// JavaScript Document
function foo()
{
	 var x= window.prompt("Please enter your password","");
	if (x == null){
		return false;
	}
	
	if (x=="1nt3rn3t")
	 {
		window.open("Login_Resources.htm","","toolbar=no,menu=no,resizable=yes,location=no,height=500,width=600" );
	 }
	
	if (x!="1nt3rn3t")
	 {
	 	popup();
		return false;
	 }
}

function popup()
{
	window.open("Login_Error.htm", "", "toolbar=no,menu=no,resizable=no,location=no,scrollbars=no,width = 200,height=125,left=400,top=300")
}

function siteChangeAlert (address) 
{
var site = address;
var showUserAlert = window.open("","disclaimer","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes, width=400,height=250,top=100,left=150,screenX=180,screenY=100");
	
showUserAlert.document.write('<html><head><title>Georgia ICAC Disclaimer</title>');
	
showUserAlert.document.write('<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript"> sendTimer = setTimeout("sendToClientSide()",3500); closeTimer = setTimeout("window.close()",45000); function sendToClientSide(){window.open("'+site+'");} </script>');
	
showUserAlert.document.write('</head><body bgcolor="#FFFFFF" text="#0065CE" link="#FFFF80"  vlink="#FFFF80" alink="#FFFF80" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');

showUserAlert.document.write('<table width="370" height="100%" border="0" cellspacing="0" cellpadding="0" align="center"><tr><td><img src="Images/ICAC_disclaimer.gif" width="370" height="50" alt="" border="0"></td></tr><tr><td>');
	
showUserAlert.document.write('<table width="330" border="0"  cellspacing="0" cellpadding="0"  align="center"><tr><td><br><FONT FACE="Geneva, Arial, Helvetica, sans-serif" COLOR="black" SIZE="2">You are about to leave the Georgia ICAC site. The site you are accessing is not part of the Georgia ICAC Web site. Please be aware that the new site will have different terms of use and privacy polices.  Proceeding indicates that you understand and agree not to hold Georgia ICAC responsible for any site but its own.</FONT>');
	
showUserAlert.document.write('<br><br><FONT FACE="Geneva, Arial, Helvetica, sans-serif" SIZE="2" COLOR="#993300"><b>If you do not see the new site, <a href="'+site+'" target="_blank"><FONT FACE="Geneva, Arial, Helvetica, sans-serif" SIZE="2" COLOR="#993300">click here.</A></font></a><BR></td></tr>');
	
showUserAlert.document.write('</table></td></tr><tr bgcolor="#ffffff"><td align="center" height="20"><a href="javascript:window.close();"><FONT FACE="Geneva, Arial, Helvetica, sans-serif" SIZE="1" COLOR="#009966"><b>Close this window</b></font></a><BR></td></tr></table></body></html>');

showUserAlert.document.close();
}
