function popup(FILE, FEATURES) { 
CONTENT = "<html><head><title>Larger View</title><link rel='stylesheet' href='/css/default.css' type='text/css'></head>" + "<body><center><span class='category_product'>Larger Product View</span><br><IMG SRC='" + FILE + "' BORDER=0>" + "<br><input type='submit' value='Close this window &gt; &gt;' onclick='top.window.close();' class='button'></center>"+ "</body></html>";
pop = window.open("","",FEATURES);
pop.document.open();
pop.focus();
pop.document.write(CONTENT);
pop.document.close();

} 
