// JavaScript Document
function popUp(URL, h, w) {
	day = new Date();
	id = day.getTime();
	h = h + 20;
	w = w + 20;
	
	l = (window.screen.width-390)/2;
	t = (window.screen.height-440)/2;
	
	win = window.open('coupons.html', 'Pictures', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=390,height=440,left='+l+',top='+t);
/*	win.document.write('<title></title>');
	win.document.write('<link href="pu-style.css" rel="stylesheet" type="text/css" />');
	win.document.write('<div class="newnav">&nbsp;</div>');
	win.document.write('<a href="javascript:window.close();"><img class="borders" src="'+URL+'" border="0"></a>');
*/	win.document.close();
	
}

