<!--
	/*=================================================================
	Function: TextForNewWindow
	Purpose:  Puts text and Image into new Window & A 0 Sec Delay
	Input:    NONE
	Returns:  undefined
	==================================================================*/
	function image(title, path, width, height, windowname,scrollbars)
	{
	text = "<head><META HTTP-EQUIV='Pragma' CONTENT='no-cache'></head>\n"
	text += "<SCRIPT language=JavaScript1.2 src='styles/noclick.js'></SCRIPT>\n";
	text += "<html>\n<head>\n<title>" + title + "</title>\n";
	text += "<body oncontextmenu='return false' onselectstart='return false' ondragstart='return false'>\n";
	text += "<Body leftMargin=0 topMargin=0>\n";
	text += "<center>\n";
	text += "<Body bgcolor=BLACK>\n";
	text += "<img border='0' src='" + path + "' alt='" + title + " '></A>\n";
	text += "</center>\n</body>\n</html>\n";
	
	newWindow = window.open('', windowname ,'scrollbars='+scrollbars+',width='+width+',height=' +height +',left=0,top=0');
	newWindow.document.write(text);
	
	//setTimeout('windowProp(text, '+ width + ',' + height + ',' + '"' + windowname + '","' + scrollbars + '" )', 0); 		// No Open Delay
	} 

	/*=================================================================
	Function: OpenNewWindow
	Purpose:  Opens New Window with text plus preset width and height
	Input:    Text from TextForNewWindow, width , height, and name for new window
	Returns:  undefined
	==================================================================*/
	function windowProp(text, width, height, windowname,scrollbars)
	{
	newWindow = window.open('', windowname ,'scrollbars='+scrollbars+',width='+width+',height=' +height +',left=0,top=0');
	newWindow.document.write(text);
	}
//-->
