	<!-- Begin
	
	function popUp(jpg,client)
   	{
	newwindow2=window.open('','name','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0, width=600, height=650,left=100,top=50');
	var tmp = newwindow2.document;
	tmp.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
	tmp.write('<html><head><title>');
	if(client=="Client Name"){
		tmp.write('Julie Metz Design | Book Covers');
	}else{
	tmp.write('Julie Metz Design | Book Covers | '+client);
	}//close if
	
	tmp.write(' </title>');
	tmp.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	tmp.write('<link rel="stylesheet" TYPE="text/css" href="css/jm_design.css">');
	tmp.write('<META NAME="ROBOTS" CONTENT="INDEX,FOLLOW">');
    tmp.write('<META NAME="ROBOTS" CONTENT="noarchive">');
	tmp.write('</head><body bgcolor="#F0F0F0">');
	tmp.write('<div align ="center"><table width="575">');
	tmp.write('<tr><td height="20"></td></tr>');
	tmp.write('<tr align="center"><td><img src="');
	tmp.write(jpg);
	tmp.write('" height="500"></td></tr>');
		if(client=="Client Name"){
		//don't write any HTML
		}
		else{
		tmp.write('<tr align="center"><td class=body2_pop>Client - '+client +'<br></td></tr>');
		}//close if
	
	tmp.write('<tr><td height="10"></td></tr>');
	tmp.write('<tr align="center"><td><a href="javascript:self.close()">Close the window</a></td></tr>');
	tmp.write('<tr><td height="10"></td></tr>');
	tmp.write('<tr align="center"><td class ="body">All images and content &copy; Julie Metz</td></tr>');
	tmp.write('</table></div></body></html>');
	tmp.close();
    }
	// End -->
