function set_standart(img)
{
	window.clearTimeout(geomix_timer);
	img.className='';
}

function set_klein(img)
{
	img.className='vorschau_klein';
	geomix_timer=window.setTimeout(function(){img.className='vorschau_gross'},300);
	img.onmouseout = function() { set_standart(img); };
}

function clearDefault(el)
{
  	if (el.defaultValue==el.value) el.value = ""
}

function MM_openBrWindow(theURL,winName,features)
{
	window.open(theURL,winName,features);
}

function Galerie_openWindow(path,width,height)
{
	window.open('http://www.style-your-golf.com/image.php?path='+path,'zoom','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left='+((screen.width-width) / 2)+',top='+((screen.height-height) / 2)+',width='+width+',height='+height);
}



var selectedVariant;

function produkt_box_v_changed(obj) 
{
	selectedVariant = obj.options[obj.selectedIndex].value;
	
	if(variants[obj.options[obj.selectedIndex].value]["anfrage"] == "true") {
			
		document.getElementById("warenkorb_button").style.display = "none";
		document.getElementById("angebot_button").style.display = "";
	} else {
		document.getElementById("warenkorb_button").style.display = "";
		document.getElementById("angebot_button").style.display = "none";
	}
	
	set_amount_to_add(obj);
}

function set_amount_to_add(obj)
	{
	
		var curr_amount = variants[obj.options[obj.selectedIndex].value]["lager"];	
	
		//var curr_amount = obj.options[obj.selectedIndex].getAttribute("lager");
	
		if(curr_amount == 0) curr_amount = 10;

		var countlist = document.getElementById("summe");
		
		for (i=countlist.length; i > 0; i--)  { countlist.options[i-1] = null; }
		
		var max_amount = (curr_amount>10) ? 10 : curr_amount;
		
		for(i=1; i <= max_amount; i++) {
			var length = countlist.options.length;
			countlist.options[length] = new Option(i, i);		
		}		
			
	}

function angebot_anfordern()
{
	location.href="angebot-anfordern.php?artikelnummer="+selectedVariant;
}



