// JavaScript Document

function TileWindow1(pic)
{
 

leftpos=(screen.width-485)/2;
toppos=(screen.height-310)/2;

 
tileWindow= window.open("","picWin","width=485,height=310,left="+leftpos+",top="+toppos);
tileWindow.document.write("<HTML><HEAD><\/HEAD><BODY BGCOLOR='e2e2e2' leftmargin='0' topmargin='0' rightmargin='0'><center><IMG SRC=" + pic + "><\/center><table align='center' cellpadding='10' cellspacing='0'><tr><td><font face='Verdana, Arial, Helvetica, sans-serif' color='000000' size='1'> Above are images of each tile. The tile on the far left is a single tile. The tiles on the right are to demonstrate what patterns are created when multiple tiles are installed together.<\/font><br><center><a href='javascript:window.close()''><font face='Verdana, Arial, Helvetica, sans-serif' color='000000' size='1'>Close Window</font><\/a><\/center><\/td><\/tr><\/table><\/BODY><\/HTML>");
 
tileWindow.focus();
}
 
function TileWindow2(pic)
{
 

leftpos=(screen.width-310)/2;
toppos=(screen.height-485)/2;

 
tileWindow2= window.open("","picWin","width=400,height=400,left="+leftpos+",top="+toppos);
tileWindow2.document.write("<HTML><HEAD><\/HEAD><BODY BGCOLOR='e2e2e2' leftmargin='0' topmargin='0' rightmargin='0'><p><br><center><IMG SRC=" + pic + "><\/center><table align='center' cellpadding='10' cellspacing='0'><tr><td><font face='Verdana, Arial, Helvetica, sans-serif' color='000000' size='1'> Above are images of each tile. The tile on the far left is a single tile. The tiles on the right are to demonstrate what patterns are created when multiple tiles are installed together.<\/font><br><center><a href='javascript:window.close()''><font face='Verdana, Arial, Helvetica, sans-serif' color='000000' size='1'>Close Window</font><\/a><\/center><\/td><\/tr><\/table><\/BODY><\/HTML>");
 
tileWindow2.focus();
}

 