// JavaScript Document

//centered popup window
//<a href="javascript:centerWindow('vidplayer.html','903','458')">Text</a>
function centerWindow(url,winwidth,winheight) {
	toppos = (screen.height / 2) - (winheight / 2);
	leftpos = (screen.width / 2) - (winwidth / 2);
	window.open(url,'title','top=' + toppos + ',left=' + leftpos + ',width=' + winwidth + ',height=' + winheight + ',scrollbars=auto');
}

function checkSearch(formvar) {
	if (formvar.city.value == "0" && formvar.employer.value == "0") {
		alert("Please select a city and/or employer.");
		return false;
	}
	return true;
}