

function PopUp(whatURL) 
	{
	var picture = '"' + whatURL+ '"';

	win = window.open( '' ,"Image","scrollbars=yes");
	var aw = screen.availWidth;
	var ah = screen.availHeight;
	win.moveTo(0, 0);
	win.resizeTo(aw,ah);

	win.document.write('<html>');
	win.document.write('<head>');
	win.document.write('<link rel="stylesheet" href="all.css">');
	win.document.write('<link rel="stylesheet" href="tile.css">');
	win.document.write('</head>');
	win.document.write('<body>');

	win.document.write('<h1>Kurtz Cabinetry</h1>');
	win.document.write('<hr />');

	win.document.write('<center>');

	win.document.write('<img src= '+ picture +' name="myPicture" alt=' + picture + ' />');
	win.document.write('</center>');
	win.document.write('</body>');
	win.document.write('</html>');
	}  


