var faux = null;
var pic = new Image(); 
function openWin(pic){
var chasm = screen.availWidth-10;
var mount = screen.availHeight-30; 
faux=window.open('','rabbit1','top=0,left=0,width='+chasm+',height='+mount+',scrollbars=yes,resizable=yes');
var fd = faux.document;

fd.open();
fd.write("<html>"); 
fd.write("<body bgcolor='#FFFFFF' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'  onLoad=\"window.focus()\">");  
//http://www16.tok2.com/home/petlife/g2/
//http://petlife.uu2.org/g2/	
fd.write("<img src='http://www16.tok2.com/home/petlife/g2/"+pic+"' border='0' ></body></html>"); 
fd.close();
}

