function popupWindow(theURL, title, width, height) {

	if (theURL !== "") {
		var specs = "scrollbars=yes,width=" + width + ",height=" + height + ",top=50,left=332,resizable=yes";
		var win = open("", "", specs);
		win.name = title;
		win.location.replace(theURL);
		win.focus();
	}

}
function simplePopupWindow(width, height, text) {

		var specs = "scrollbars=yes,width=" + width + ",height=" + height + ",top=50,left=332,resizable=yes";
		var win = open("", "", specs);
		win.focus();	
		win.document.write(text);
}