function PopUp(url){
	PopUpEx(url, 670, 500);
}

function PopUpEx(url, width, height){
	var features = "dependent=yes,width=" + width + ",height=" + height + ",directories=no,location=no,menubar=no,scrollbars=yes,resizable=yes,status=no,toolbar=no";
	window.open(url,'SeminarDisclosureSystem', features);
}