function MouseOn(imageName)
{
	objImage = eval("document." + imageName)
	objReplace = eval(imageName + "_On")

	objImage.src = objReplace.src
}


function MouseOff(imageName)
{
	objImage = eval("document." + imageName)
	objReplace = eval(imageName + "_Off")
	
	objImage.src = objReplace.src
}

function MouseOn2(imageName, replaceName)
{
	objImage = eval("document." + imageName)
	objReplace = eval(replaceName + "_On")
	
	objImage.src = objReplace.src
}


function MouseOff2(imageName, replaceName)
{
	objImage = eval("document." + imageName)
	objReplace = eval(replaceName + "_Off")
	
	objImage.src = objReplace.src
}

function popup(strURL, intWidth, intHeight){
	openWin = window.open(strURL,'popupwin','width=' + intHeight + ',height=' + intHeight + ',resizable=yes,scrollbars=yes,menubar=yes')
}
function popupTips(page) {
	OpenWin = this.open(page, 'SearchTips', 'toolbar=no,menubar=no,status=no,location=no,scrollbars=yes,resizable=yes,height=480,width=500,left=50,top=50,screenX=200,screenY=5');
}
function popupLink(strURL, strWin, intWidth, intHeight){
	var newwin = window.open(strURL,'popuplinkwin','location=yes,resizable=yes,scrollbars=yes,menubar=yes,status=yes,toolbar=yes,width=' + intWidth + ',height=' + intHeight + ',left=0,top=0,screenX=0,screenY=0')
	newwin.focus()
}

function SponsorPopup(strURL, strCompanyID, strWin, intWidth, intHeight){
	var newwin = window.open('/sponsor_match_popup.aspx?URL=' + strURL + '&CompanyID=' + strCompanyID,'popuplinkwin','location=yes,resizable=yes,scrollbars=yes,menubar=yes,status=yes,toolbar=yes,width=' + intWidth + ',height=' + intHeight + ',left=0,top=0,screenX=0,screenY=0')
	newwin.focus()
}

function popupLocation(strURL, intWidth, intHeight){
	var newwin = window.open(strURL,'popuplinkwin','location=no,resizable=no,scrollbars=yes,menubar=no,status=no,toolbar=no,width=' + intWidth + ',height=' + intHeight + ',left=0,top=0,screenX=0,screenY=0' )
	newwin.focus()
}
