// JavaScript Document 
function picpopper(img,w,h) { 

var day = new Date(); 
var id = day.getTime(); 
var ww = w+20; 
var wh = h+110; 
var params = 'width='+ww+',height='+wh+''; 

var html = '<html><head><style type="text\/css">\n'+ 
'body,html { text-align: center; margin-top:12px; margin-bottom:12px; }\n'+ 
'<\/style><\/head><body bgcolor="#EFE2C0">\n'+ 
'<table width="'+w+'" cellpadding=0 cellspacing=0 border=0><tr><td colspan=2><img src="'+img+'" width="'+w+'" height="'+h+'" border="0" alt="'+img+'"></td></tr><tr><td width=50% align=center><img src="http://www.huyenledesigns.com/projects/murphree/images/gallery/before.gif" border="0" /></td><td width=50% align=center><img src="http://www.huyenledesigns.com/projects/murphree/images/gallery/after.gif" border="0" /></td></tr><tr><td align="center" colspan=2><form><input type="button" onClick="window.close();" value="Close window"><\/form></td></tr></table>\n'+ 
'<\/body><\/html>'; 

newwindow=window.open('',id,params); 
newwindow.document.write(html); 
}