﻿/*设置左右框高度相同*/
window.onload = function()
{
	var leftDiv = document.getElementById("MainLeftDiv");
	var rightDiv = document.getElementById("MainRightDiv");
	
	 var lh = parseInt(leftDiv.offsetHeight);
	 var rh = parseInt(rightDiv.offsetHeight);
	 
	 if(lh > rh)
	 {
		rightDiv.style.height = lh - 30;
	 }
	 else
	 {
		leftDiv.style.height = rh - 30;
	 }
}

function GlobalSearch()
{
	var obj = document.getElementById("SearchBox");
	window.location.href = "/search.aspx?searchtype=0&Keyword=" + obj.value;
}
function ClearTitleSharp()
{
	if (document.title.indexOf("#") != -1)
	{
		document.title = document.title.split("#")[0];
	}
}
