function swapImages(img_name, img_src){
	document[img_name].src = img_src;
}
function imgOvr(name, imgLoc){
	swapImages(name, imgLoc);
	menuOver();
}
function imgUp(name, imgLoc){
	swapImages(name, imgLoc);
	menuRevert();
}
function openPopup(name, height, width){
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	var windowName = name.slice(name.indexOf('-')+1, 50);
	var windowLoc = ''+name+'.html';
	var winProps = 'toolbar=no,statusbar=no,location=no,scrollbars=no,resizable=yes,width='+width+',height='+height+',top='+wint+',left='+winl;
	window.open(windowLoc, windowName, winProps);
}
function openForm(){
    var width = 550;
    var height = 650;
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	var windowName = 'requestInfo';
	var windowLoc = 'requestInfo.html';
	var winProps = 'toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',top='+wint+',left='+winl;
	window.open(windowLoc, windowName, winProps);
}

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

/**********************************************************************
 section 2 - live chat
 **********************************************************************/

 function openPop(){
    var width = 430;
    var height = 480;
	var winl = (screen.width - width) / 2;
	var wint = (screen.height - height) / 2;
	var windowName = 'liveChat';
	var windowLoc = 'http://livechat.boldchat.com/aid/2495901543793126746/bc.chat?cwdid=4277599060336313944&amp;wdid=4531311143089047725';
	var winProps = 'toolbar=no,statusbar=no,location=no,scrollbars=yes,resizable=yes,width='+width+',height='+height+',top='+wint+',left='+winl;
	window.open(windowLoc, windowName, winProps);
}