		var theTarget = ""

		if (document.images){
			 blank = new Image(13,8);blank.src = "grfx/blank.gif";
			 arrow = new Image(13,8);arrow.src = "grfx/arrow.gif";
			 warrow = new Image(13,8);warrow.src = "grfx/whitearrow.gif";
		}
		   
			function imgon(imgloc) {
				if (document.images) {
					temp = eval('document.'+imgloc);
					offState = eval('document.'+menuDefault);
					offState.src = "grfx/whitearrow.gif";
					temp.src = "grfx/arrow.gif";
					theTarget = temp;
				}
				// window.status = txt;
				//	 return true;
				}
				
			function imgoff() {
				if (document.images) {
					theTarget.src = "grfx/blank.gif";
					initPage() ;
				}
				}
				
			function initPage() {
				if (document.images) {
					onState = eval('document.'+menuDefault);
					onState.src = "grfx/arrow.gif";
				}
				}
				
				
			function openimdb(targeturl){
				theURL = "http://us.imdb.com/"+targeturl;
				var	newWin = window.open(theURL,'NewWindow','status,resizable');
				newWin.focus();
			}