// Function to open a new window
function External (thisURL, winName, withMenu, withScroll, WID, HIH, returnObj) {
	var features ;
	var winExternal ;

	features = "width=" + WID + ",height=" + HIH ;
	features += ",menubar=" + withMenu + ",scrollbars=" + withScroll ;
	features += ",toolbar=no,location=no,directories=no,status=yes" ;
	features += ",resizable=yes,top=10,left=10" ;

	winExternal = window.open(thisURL, winName, features) ;
	winExternal.focus() ;

	if (returnObj == 1) {
		return winExternal ;
	}
}

