/* misc scripts */

function print_product(lenke){
	var w=850;
	var h=400;
   var windowoptoins = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1"; 
   var popupWindow = window.open(lenke, 'Imagezoom', windowoptoins + ',width=' + w + ',height=' + h); 
   var focus = popupWindow.focus(); 
}

function toggle_drop(idElement){
//	alert(idElement);
	var elm = document.getElementById(idElement);
//	alert(":"+elm.style.display+":");
		if(elm.style.display == ''){
			elm.style.display = 'none';
		}else if (elm.style.display == 'none'){
			elm.style.display = '';
		}

}