<!--
function optionWindow(url) {
	var availwidth = screen.width;
	var availheight = screen.height;
	var scrollbars;
	
	if (availwidth > 800) {
		newwidth = 720;
	} else {
		newwidth = 640;
	}
	
	if (availheight > 600) {
		newheight = 590;
	} else {
		newheight = 480;
	}
	
	if (url == 'emailjob.php') {
		newwidth = 420;
		newheight = 420;
	}
	
	if (url == 'map.php' || url == 'alljobs.php')
	{
		scrollbars = "yes";
	} else {
		scrollbars = "auto";
	}
	
	var page = 'http://www.ravenwing.com/' + url;
	var load =  window.open(page,'','menubar=yes,height=' + newheight + ',width=' + newwidth + ',resizable=yes,toolbar=no,scrollbars=yes,location=yes,status=yes');
} //end function optionWindow

// -->
