// JavaScript Documentwindow.status = " Mona Ling Leung: Hair Artist";	function popupImage( url, name, width, height, scroller ) {		var outStr = 'height=' + height + ',width=' + width;		outStr = outStr + ',menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes';		window.open(url, name, outStr);	}	var backColor = new Array();backColor[0] = 'cc0000';		//redbackColor[1] = 'ff3366';		//pink				backColor[2] = '9900ff';		//purplebackColor[3] = '00cc00';		//green		backColor[4] = '66ccff';		//bluefunction changeBG(whichColor) {	//alert(whichColor);	document.bgColor = "#" + backColor[whichColor];	document.body.background = "_images/bg_" + backColor[whichColor] + ".jpg";}function loadImage() {// get the query string, ignore the ? at the front.	var querystring = location.search.substring(1,location.search.length);		//alert(bigImage.src);	bigImage.src = "_images/" + querystring;	window.moveTo(0,0);	window.focus();	whichColor=Math.floor(Math.random()*5);	changeBG(whichColor);}