// Deze unit bevat alle standaard Javascript-regels 
// en functies, die toepasbaar zijn voor alle mainmenu's
// CM - 14-08-2002

function show_status(stat_txt){
		window.status=stat_txt;
		setTimeout("show_null()",50000);
}

function show_null(){
		window.status="";
}
<!-- BEGIN Script	<!-- created by Donna on 1/2/2002 -->

//
//<a href='Javascript:zview(&quot;../images/swatches/big/Calypso_Melange_9073-ML.jpg&quot;,&quot;Calypso Melange&nbsp;9073-ML&quot;,&quot;400&quot;,&quot;411&quot;);' ONMOUSEOVER='javascript:show_status(&quot;Calypso Melange&nbsp;9073-ML&quot;);return true;'>
// <img alt='Calypso Melange&nbsp;9073-ML' src='../images/swatches/small/Calypso_Melange_9073-ML.jpg' border=0 width='90' height='96'>
//</a>
//<h4>Calypso Melange</h4>
//
//  &quot; --> "
//
//

function zview(pname, parsname, pwidth, pheight) {
var fullname = parsname;
var newWindow;
	var winTop = (screen.height / 2) - 275;
	var winLeft = (screen.width / 2) - 275;
	var windowFeatures = "width=500,height=500" + ",";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
	newWindow = window.open("","View",windowFeatures);
	newWindow.document.write('<head><title>'+fullname+'</title></head><BODY bgcolor="#FFFFFF"><center><IMG SRC="'+ pname + '" BORDER=0 WIDTH="'+ pwidth + '" HEIGHT="'+ pheight + '"></center><center><font face="Verdana" size="1" color="#666666">'+fullname+'</font></center><form><center><input type=button value="Close Window" onClick="javascript:window.close();"></center></form></BODY>');
    newWindow.document.close();
	}



// Afvangen van de muisfunctie om bron te bekijken
//
var message='Copyright © 2002 PBI'; 
function click(e)
{if (document.all) {if (event.button == 2) {alert(message);return false;}}
 if (document.layers) {if (e.which == 3) {alert(message);return false;}}}
 if (document.layers) {document.captureEvents(Event.MOUSEDOWN);}
 
 document.onmousedown=click;

