﻿function overgif(img,imgid) {
	document.getElementById(imgid).src = "images/" + img + "_over.gif";
}

function outgif(img, imgid) {
	document.getElementById(imgid).src = "images/" + img + ".gif";
}

function over(img,folder) {
	document.getElementById(img).src = "images" + folder + "/" + img + "_over.gif";
}

function out(img,folder) {
	document.getElementById(img).src = "images" + folder + "/" + img + ".gif";
}

function overhome(img,folder) {
	document.getElementById(img).src = "images" + folder + "/" + img + "_over.gif";
}

function outhome(img,folder) {
	document.getElementById(img).src = "images" + folder + "/" + img + ".gif";
}


function dosearch()
	{
		
		var s_Query;
		s_Query = document.getElementById("s_Search_Query").value
		
			
		
		if (s_Query!='Enter search here') 
			{
					
			if (s_Query!='') 
				{
				window.location.href = 'search.aspx?i_PageID=1813&s_Search_Query=' + s_Query ;	
				}
			}
		
	}
	
function popup_window(url, name, feature)
    {
    var new_window = window.open(url, name, feature);
    new_window.focus();
    }	
  
function buttonover(button,img,folder) {
	document.getElementById("ctl00_MainPlaceHolder_" + button + "").src = "images" + folder + "/" + img + "_over.gif";
}

function buttonout(button,img,folder) {
	document.getElementById("ctl00_MainPlaceHolder_" + button + "").src = "images" + folder + "/" + img + ".gif";
}
    
