function popUp(page){
	var newWin = window.open(page,'popup','left=0,top=0,width=500,height=500,statusbar=1,resizable=0, scrollbars')
	newWin.focus();
}

function jumpTo(){
	if(document.getElementById('CommunitiesDropDown').value != "")
	window.open(document.getElementById('CommunitiesDropDown').value,'newWin')
//		document.location.href = document.getElementById('CommunitiesDropDown').value;
}