
function PopUp(w, h, url){
	x = (screen.availWidth - w) /2;
	y = (screen.availHeight - h) /2;
	features = "'top="+y+", left="+x+", height="+h+", width="+w+"'";
	window.open(url, "_blank", features);
}

