function newWindow(myURL,h,w){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height=' + h + ',width=' + w +',top=' + wint + ',left= ' + winl + ', scrollbars=no';
	testWindow = window.open(myURL,"title",winprops);
	testWindow.focus();
}

function newWindow2(myURL,h,w){
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height=' + h + ',width=' + w +',top=' + wint + ',left= ' + winl + ', scrollbars=yes';
	testWindow = window.open(myURL,"title",winprops);
	testWindow.focus();
}

function popUp(myURL,w,h) {

	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height=' + h + ',width=' + w +',top=' + wint + ',left= ' + winl + ', scrollbars=yes,resizable=yes';
	testWindow = window.open(myURL,"title",winprops);
	testWindow.focus();

}

function checkSelected(listRef) {
	if(listRef.value == "Other")
		document.getElementById("otherHeard").style.display = "";
	else
		document.getElementById("otherHeard").style.display = "none";
}


