var winhandle = null;
function popUp(aURL, aWidth, aHeight) {
aWidth=aWidth+10;
aHeight=aHeight+10;
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(aURL, '" + id + "', 'width=' + aWidth + ', scrollbars=no, resize=no, height=' + aHeight);");
winhandle = eval("page" + id);
with (winhandle.document){
writeln('<html><head><link rel=stylesheet type="text\/css" href="..\/q.css">');
writeln('<title>BUY NOW & SAVE 25%<\/title>');
writeln('<meta http-equiv="imagetoolbar" content="no">');
writeln('<\/head>');
writeln('<body>');
writeln('<a href="javascript:window.close();"><img id=pt10 name="arlesimage" alt="Please note: you are looking at the small copy of the photo, its real dimensions are shown under its thumbnail. Click this widow to close it." src="' + aURL + '" style="display:block"><\/a>');
writeln('<\/body><\/html>');
close();}
winhandle.focus();}