<!-- # coding: utf-8 -->
// JavaScript Document

function show_prod(lekel){
	popupimg('imgs/produits/ZOOM/'+lekel+'.jpg');
}

function popupimg(val){
	var titre='Roundup';
	w=open('','image','width=100,height=100,toolbar=no,scrollbars=no,resizable=no');
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE>");
	w.document.write("<script language='javascript'>function resizeMe(){ adjWidth = document.visuel.width+70; adjHeight = document.visuel.height+102; self.resizeTo(adjWidth, adjHeight);}</script>");
	w.document.write("</HEAD>");
	w.document.write("<BODY onload='resizeMe()' onBlur='self.focus()' bgcolor='#82CF03'><table align='center' height=100% border=0><tr><td><a href='#' onClick='window.close();'><IMG src='"+val+"' border='0' name='visuel'></a></td></tr></table></BODY></HTML>");
	w.document.close();
}

function popup(val,larg,haut){
	var titre='Roundup';
	open(val,'roundup','width='+larg+',height='+haut+',toolbar=no,scrollbars=no,resizable=yes');
}

function popup2(theURL,h,l) {
	feature = "'toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=no, width="+l+", height="+h+"'";
	//alert(feature);
	fenetre = window.open(theURL,'KB',feature);
	fenetre.focus();
}
function CheckIsIE() { 
	if (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER')  { 
		return true;
	} else { 
		return false; 
	} 
}

function imprime() { 
	if(navigator.platform=="Win32"){
		if (CheckIsIE() == true) { 
			print(); 
		} else { 
			window.print(); 
		}
	} else {
		alert("Utilisez la fonction CTRL-P (ou CMD-P sous Macintosh), pour imprimer la page");
	}
}