
var LeftX=100;
var TopX=100;
function TopWin() 
{
var strText="";

strText +='<html><head></head><body topmargin="10" leftmargin="10" bgcolor="#EEBE00" >'
strText +='<table border="0" width="480" bgcolor="#00CCFF"><tr >'
strText +='<td width="480" colspan="2" bgcolor="#000080" align="center" height="24"><b>'
strText +='<font size="4" color="#FFFF00">New EgyptianSam.com</font></b></td></tr><tr >'
strText +='<td width="447" bgcolor="#CCFFFF" colspan="2" align="center" height="21">New release of EgyptianSam.com&nbsp;</td >'
strText +='</tr><tr >'
strText +='<td width="480" bgcolor="#CCFFFF" height="22" colspan="2">&nbsp;</td ></tr><tr><td width="447" bgcolor="#CCFFFF" colspan="2" height="24">'
strText +='<p align="center"><b><font size="4" color="#FF0000">Loading New site&nbsp; ..... Please wait</font></b></p>'
strText +='</td></tr><tr>'
strText +='<td width="480" height="21" colspan="2">&nbsp;</td></tr><tr>'
strText +='<td width="480" colspan="2" bgcolor="#000080" align="center"><b><font size="4" color="#FFFF00" >'
strText +=' New &amp; Extra subjects and Material</font></b></td></tr><tr >'
strText +='<td width="447" bgcolor="#00CCFF" colspan="2" align="center">This is phase II of '
strText +='this site, there are many extra subjects and links have been added to the '
strText +='previous pages.<br>There are also new pages and material</td >'
strText +='</tr><tr ><td width="64" bgcolor="#00CCFF">&nbsp;</td ><td width="383">&nbsp;</td >'
strText +='</tr><tr ><td width="64" bgcolor="#FFFFCC"><b><font color="#FF0000">New!</font></b></td >'
strText +='<td width="383">New subject has been included since last phase of this web.</td >'
strText +='</tr><tr><td width="64" bgcolor="#FFFFCC"><font color="#000080"><b>Extra</b></font></td >'
strText +='<td width="383">Extra material has been added since last published page.</td >'
strText +='</tr><tr><td width="64" bgcolor="#00CCFF">&nbsp;</td><td width="383"><a href="javascript:close()">Close Window</a></td></tr><tr><td width="64" bgcolor="#00CCFF">&nbsp;</td >'
strText +='<td width="383">Critics and comments are most welcomed see/sign <a href="http://www.TheGuestBook.com/vgbook/276450.gbook" >'
strText +=' GuestBook</a></td></tr></table>&nbsp;'
strText +='\n</body>\n</html>'
windowProp(strText)

}


function windowProp(text) {
newWindow = window.open('','newWin','width=500,height=350');
newWindow.document.write(text);
MoveWin(newWindow)
}
function closeWin() {
newWindow.close();				// close small window and depart
}
function MoveWin(newWindow) {
newWindow.moveto(LeftX, TopX);			
LeftX+=100
TopX+=150
}
