function PopUp(filename, winheight, winwidth, scrx, scry){
window.open(filename,"popDialog","height="+winheight+",width="+winwidth+",top="+scry+",left="+scrx+",toolbar=no,status=no,scrollbars=no,location=no,menubar=no,directories=no,resizable=no");
}

function PopUpS(filename, winheight, winwidth, scrx, scry){
window.open(filename,"popDialog","height="+winheight+",width="+winwidth+",top="+scry+",left="+scrx+",toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,resizable=no");
}

function pop(x, y, r, s, pgUrl, pgName) {
	var options = 'width='+x+',height='+y+',resizable=' + (r ? 'yes' : 'no') + ',scrollbars=' + (s ? 'yes' : 'no') + ',toolbar=no,location=no,directories=no,status=yes,menubar=no';
	window.open(pgUrl, pgName, options); 
}