

function sizeSelect (formEle) {
	if (formEle.value != "") {
		window.open(formEle.value);
	}
}

function newsPop() {
	window.open("news.php", null, "width=670,height=500,menubar=no,toolbar=no,top=50,left=50,menubar=0,directories=0,resizable=0,scrollbars=1");
}


// on the news pop up
// make sure all the links on this page open in the new windows

function initNewsPage() {
	var pagelinks = document.getElementsByTagName('a');
	$A(pagelinks).each( function(el) {
		el.onclick = function() {
			var targeturl = el.getAttribute('href');
			openParentWindow(targeturl);
			return false;		
		}
	});
}


