
var prWin = null;
function popWindow(service) {
	var width = 400;
	var height = 300;
	var filename = "popup_" + service + ".html";
	prWin = window.open(filename, "newsletter", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,personalbar=no,scrollbars=no,resizable=yes,menubar=no");

}

function popTemplate(service, width, height) {
	var filename = "popup_" + service + ".html";
	prWin = window.open(filename, "newsletter", "width=" + width + ",height=" + height + ",toolbar=no,location=no,status=no,personalbar=no,scrollbars=no,resizable=yes,menubar=no");

}
