function popup(chemin,larg,haut)
	{
	i1 = new Image;
	i1.src = chemin;

	html = '<HTML><HEAD><title>YBA</title></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><a href=javascript:window.close();><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest></a></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0, width='+larg+', height='+haut+', directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
	};
	

	function check_selectprod(t) {
		fObj = document.forms[ 'compare' ];
		chk = 0;
		for( i=0; i<fObj.elements.length; i++ ) {
			elmObj= fObj.elements[ i ];
			if ( elmObj.type == 'checkbox' & elmObj.name != 'checkbox' ) {
				if ( elmObj.checked ) {
					chk++;
				}
			}
		}
		if ( chk <= 1 ) {
			alert( 'Please select 2 or more models' );
			return false;
		}
		if (document.compare.checkbox && document.compare.checkbox.checked) document.compare.checkbox.checked=false;
		window.open("", t, "scrollbars=yes,resizable=yes,width=800,height=650");
		return true;
	}
