function showPopup(url) {
	day = new Date();
	id = day.getTime();
	fullUrl = location.protocol; fullUrl += "//"; fullUrl += location.host; fullUrl += url;
	eval("page" + id + " = window.open(fullUrl, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=500');");
	return false;
}

function showPopupWithWidth(url,width) {
	day = new Date();
	id = day.getTime();
	fullUrl = location.protocol; fullUrl += "//"; fullUrl += location.host; fullUrl += url;
	eval("page" + id + " = window.open(fullUrl, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+width+",height=400');");
	return false;
}

function showGiftCardPopup(url) {
	day = new Date();
	id = day.getTime();
	fullUrl = location.protocol; fullUrl += "//"; fullUrl += location.host; fullUrl += url;
	eval("page" + id + " = window.open(fullUrl, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=415,height=440');");
	return false;
}