masterPop = null;
function masterpop(URL,pwidth,pheight) {
	if (masterPop) {
		masterPop.close();
	}
	var features = 'width=' + pwidth + ',height=' + pheight + ',toolbar=no,directories=no,status=no,scrollbars=yes,resize=no,menubar=no,top=20,left=20';
	masterPop = window.open(URL,"masterpop",features);
	masterPop.focus();
}

