       <!--- Hide script from old browsers
        function OpenNewWindow(cPicture,cBackground,iWidth,iHeight,cMessage)
        {
		var PictureParsed = cPicture.split("/");
		var Element = PictureParsed.length - 1;
		var PictureNameWithExt = PictureParsed[Element];
		var PictureSplit = PictureNameWithExt.split(".");
		var PictureName = PictureSplit[0];
		var ScrollEnable = 'no';
		var wHeight = iHeight + 50;
		var wWidth = iWidth + 50;

		if (screen.height <= wHeight) {
			wHeight = screen.height - 50;
			wWidth = wWidth + 20;
			ScrollEnable = 'yes';
		}
		if (screen.width <= wWidth) {
			wWidth = screen.width - 10;
			ScrollEnable = 'yes';
		}
		if (ScrollEnable == 'no') {
			NewWindow=window.open("",PictureName,"HEIGHT="+wHeight+",WIDTH="+wWidth+",scrollbars=no,resizable=no,top=0,left=0");
		} else {
			NewWindow=window.open("",PictureName,"HEIGHT="+wHeight+",WIDTH="+wWidth+",scrollbars=yes,resizable=no,top=0,left=0");
		}

	NewWindow.document.write ("<HTML><HEAD><TITLE>");
        NewWindow.document.write (cMessage);
        NewWindow.document.write ("</TITLE>");
	NewWindow.document.write ("<style>a { text-decoration: none; color: #cccc00; }");
	NewWindow.document.write ("a:hover { font-style: italic; color: #009900; }");
	NewWindow.document.write ("p { font-family: verdana,arial,helvetica,sans-serif; font-size: 14px; font-weight: bold; }</style>");
	NewWindow.document.writeln ("</HEAD>");
        NewWindow.document.writeln ("<BODY BGCOLOR='black' BACKGROUND='"+cBackground+"' TOPMARGIN='2' LEFTMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='2'>");
        NewWindow.document.writeln ("<P ALIGN=CENTER>");    
        NewWindow.document.write ("<IMG SRC=");
        NewWindow.document.write (cPicture);
	NewWindow.document.writeln (" width="+iWidth+", height="+iHeight+">");
	NewWindow.document.write ("<p align='center'><a href='#' onClick='self.close()'>");
	NewWindow.document.write ("CLOSE</a>");
        NewWindow.document.writeln ("</P>");
        NewWindow.document.writeln ("</BODY></HTML>");
        return false;
        }
												     
		// end hiding from old browsers -->
