function popUp(URL){
	newWindow=window.open(URL,'popUp','toolbar=no, width=1,height=1,left=250,top=300');
}

function goURL(el){
	box = document.getElementById(el);
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}

function popUp2(URL){
	newWindow=window.open(URL,'popUp2','toolbar=no, width=380,height=363,left=250,top=300');
}

function popUp3(URL){
	newWindow=window.open(URL,'popUp3','toolbar=no, width=590,height=370,left=250,top=300');
}


