function newWindow(WinURL, WinName, WinWH) {
	mapWindow = window.open(WinURL,WinName,WinWH)
}

function popUp(myOptions, myWidth, myHeight) {
	var destination = myOptions[myOptions.selectedIndex].value;
	if (destination == "null") {
		return true;
	}
	var attribs = "',scrollbars=yes,resizable=yes,toolbar=yes,Width=" + myWidth + ",Height=" + myHeight +"'";
	open(destination,'cosponsor',attribs);
	myOptions.selectedIndex = 0;
	return true;
}
