<!--
function tile(bgtile){
winda=window.open("","","width=600,height=440,screenX=40,screenY=40,resizable=yes");
if (winda){
winda.focus();
winda.document.open();
winda.document.write("<head><title>"+bgtile+"</title></head>");
winda.document.write("<body background="+'"'+bgtile+'"'+">");
winda.document.write("<h1 align=\"center\">");
winda.document.write("<font color=\"#ffccff\">Background Tiles 1</font><br><br>");
winda.document.write("</h1>");
winda.document.write("<font color=\"#000000\" strong size=5>Sample text.</font><br>");
winda.document.write("<font color=\"#FFF5EE\" strong size=5>Sample text.</font><br>");
winda.document.write("<font color=\"#9932CC\" strong size=5>Sample text.</font><br>");
winda.document.write("<font color=\"#FF0000\" strong size=5>Sample text.</font><br>");
winda.document.write("<font color=\"#B22222\" strong size=5>Sample text.</font><br>");
winda.document.write("<font color=\"#DAA520\" strong size=5>Sample text.</font><br>");
winda.document.write("<font color=\"#FFFFE0\" strong size=5>Sample text.</font><br>");
winda.document.write("<FORM><CENTER>");
winda.document.write("<P><INPUT TYPE=\"BUTTON\" NAME=\"CloseMe\" VALUE=\"Close\" ONCLICK=\"window.close()\"></P>");
winda.document.write("</FORM></CENTER>");
winda.document.write("</body>");
winda.document.close();
}
else
alert("Window failed to open. Please try again.");
}
// -->