function egged(){
	rang1 = 1000;
	rang2 = 100;
	if (typeof(screen) != "object"){
		sh = 480;
		sw = 600;
		}
	else{
		sh = screen.availHeight;
		sw = screen.availWidth;
		}
	a=Math.floor(Math.random()*rang1)%rang1;
	b=Math.floor(Math.random()*rang2)%rang2;
	//a=b;  // Remove for actual running
	wy = (sh/2)-200;
	wx = (sw/2)-200;
	winf = "height=200,width=400, screenX="+wx+",screenY="+wy+",scrollbars=yes";
	EggWin=window.open("","EggWin",winf);

	if (a == b){
		EggWin.document.writeln("<html>");
		EggWin.document.writeln("<head>");
		EggWin.document.writeln("<title>Egg Found</title>");
		EggWin.document.writeln("</head>");
		EggWin.document.writeln('<body bgcolor="#ffffff" text="#143266">');
		EggWin.document.writeln('<p align="center"><font color="#FF80ff"><big><big><big>You Found</big></big></big></font></p>');
		EggWin.document.writeln('<p align="center"><font color="#FF80ff"><big><big><big> the Easter Egg!</big></big></big></font></p>');
		EggWin.document.writeln('<p align="center"><font color="#cc80FF">Fill out the form below and </font></p>');
		EggWin.document.writeln('<p align="center"><font color="#cc80FF">click the submit button to contact</font></p>');
		EggWin.document.writeln('<p align="center"><font color="#cc80FF"> us for your month of free hosting!</font></p>');
		EggWin.document.writeln('<form method="POST" action="mailto:Merlyn@TheGreatE-scape.com?subject=Egg Found" enctype="text/plain">');
 		EggWin.document.writeln(' <p>E-Mail address:</p><p> <input type="text" name="E-Mail" size="40"></p>');
 		EggWin.document.writeln('	<p>Name: </p><p><input');
 		EggWin.document.writeln('	type="text" name="Name" size="40"></p>');
 		EggWin.document.writeln('	<p>Street/Box: <textarea rows="2" name="Street" cols="20"></textarea></p>');
 		EggWin.document.writeln('	<p>');
 		EggWin.document.writeln('	City: <input type="text" name="City" size="20"></p>')
 		EggWin.document.writeln(' <p>State: <input type="text"');
 		EggWin.document.writeln('	name="State" size="6"></p>');
 		EggWin.document.writeln('<blockquote>');
 		EggWin.document.writeln('  <blockquote>');
		EggWin.document.writeln('			<blockquote>');
		EggWin.document.writeln('        <blockquote>');
		EggWin.document.write('          <p><input type="submit" value="Submit" style="color: rgb(0,0,255)" onClick="');
		EggWin.document.write("window.setTimeout('top.close()',10000)");
		EggWin.document.writeln('"></p>');
		EggWin.document.writeln('        </blockquote>');
		EggWin.document.writeln('      </blockquote>');
		EggWin.document.writeln('    </blockquote>');
		EggWin.document.writeln('  </blockquote>');
		EggWin.document.writeln('</form>');
		EggWin.document.writeln('</body>');
		EggWin.document.writeln('</html>');
		} else {
		EggWin.document.writeln('<html>');
		EggWin.document.writeln('<head>');
		EggWin.document.writeln('<title>No Easter Egg</title>');
		EggWin.document.writeln('</head>');
		EggWin.document.writeln('<body bgcolor="#ffffff">');
		EggWin.document.writeln('<script> window.setTimeout("top.close()",10000); </script>');
		EggWin.document.writeln('<p align="center"><font color="#143266">Sorry,</font></p>');
		EggWin.document.writeln('<p align="center"><font color="#143266"> No Easter Egg Here</font></p>');
		EggWin.document.writeln('<p align="center"><font color="#143266">Keep Trying</font></p>');
		EggWin.document.writeln('</body>');
		EggWin.document.writeln('</html>');
		}
	}

