function SwapImages(img_id, src) {
	document.getElementById(img_id).src = src;
}
function SwapImages_img_homepic(img_id) {
	if (document.getElementById(img_id).src.indexOf('homepic1.jpg') >= 0)
		document.getElementById(img_id).src = document.getElementById(img_id).src.replace('homepic1.jpg', 'homepic2.jpg');
	else if (document.getElementById(img_id).src.indexOf('homepic2.jpg') >= 0)
		document.getElementById(img_id).src = document.getElementById(img_id).src.replace('homepic2.jpg', 'homepic3.gif');
	else if (document.getElementById(img_id).src.indexOf('homepic3.jpg') >= 0)
		document.getElementById(img_id).src = document.getElementById(img_id).src.replace('homepic3.gif', 'homepic2.jpg');
}
function NavigateURL(url) {
	if (document.form_search_pager) {
		var myForm = document.form_search_pager;
		myForm.setAttribute("action", url);
		myForm.submit();
	}
	else {
		location.href = url;
	}
	return false;
}
