// JavaScript Document
function doPopup(urlToLoad) {

	if(urlToLoad != null) {

		var features = "resizeable=yes,menubar=no,scrollbars=yes,screenx=45,screeny=55,width=700,height=500";

		window.open(urlToLoad, "Main", features);

	}

}

