// JavaScript Document

function popWinC(URL,name,w,h){
	var winPosX = (screen.width - w)*.5
	var winPosY = (screen.height - h)*.5
	if(screen.width > (screen.height*2)){
		winPosX = ((screen.width*.5)-w)*.5
	}
	props = 'height='+h+',width='+w+',top='+winPosY+',left='+winPosX;
	var popUp=window.open(URL,name,props);
	popUp.focus();
}

function swapImage(imgName,theSrc) {
	eval("document.images."+imgName+".src='"+theSrc+"'");

}

function subselect(obj,where){
	choosebox = obj.options[obj.selectedIndex].value;
	locationjump( where + choosebox );
}

function locationjump(url){
	window.location = url;
}