

var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

 

if (hasReqestedVersion) 
  {
 
	   var r= getRandom() ;
	    document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN""http://www.w3.org/TR/html4/frameset.dtd">');
	    document.writeln('</head>');
		document.writeln('<frameset frameborder="yes" framespacing="0" border="false" cols="0,*">');
		document.writeln('<frame scrolling="no" name="result" noresize  src="../../' + dir + '/res.html"   frameborder="no" marginwidth="0" marginheight="0">');
		document.writeln('<frame scrolling="no" name="main"  noresize src="../../cgi-bin/' + dir + '/db.cgi?sf=chmail1&ent=' + ent + '&newlogon10='+newlogon10+'&r=' + r + '&ss=Y"  frameborder="no" marginwidth="0" marginheight="0">');
		document.writeln('<noframes> ');
        document.writeln('    <p>Viewing this page requires a browser capable of displaying frames. </p> ');
        document.writeln('</noframes>  ');
		document.writeln('</frameset>');
		document.writeln('</html>');
	   
	  
 
	  
} 
else 
{  


	    // flash is too old or we can't detect the plugin
		var alternateContent = ' This web site requires:<br>Adobe Flash Player.<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
		 document.writeln('</head>');
         document.write(alternateContent);  // insert non-flash content


}


