       <!--- 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;
		var wWidth = iWidth;

		if (screen.height <= (wHeight + 60)) {
			wHeight = screen.height - 60;
			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.writeln ("</HEAD>");
        NewWindow.document.writeln ("<BODY BGCOLOR='black' BACKGROUND='"+cBackground+"' TOPMARGIN='0' LEFTMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'>");
        NewWindow.document.write ("<IMG SRC=");
        NewWindow.document.write (cPicture);
		  NewWindow.document.writeln (" width="+iWidth+", height="+iHeight+"></BODY></HTML>");
        return false;
        }
												     
		// end hiding from old browsers -->

