
// search check
var searchBoxCleared	= false;
function clearSearchBox()
{
	if(!searchBoxCleared) {
		document.all.SearchText.value			= '';
		document.getElementById('SearchSub').disabled		= '';
		searchBoxCleared						= true;
	}
}

function fixMDHeight(h){
	//alert(h);
	/*var tObj = document.getElementById('mdCont');
	tObj.style.height = h+"px !important";*/
	//$('#mdCont').animate({ height:h+"px"}, 250);
	//$('#mdCont').css({ height:h+"px"});
	if(document.all && !document.getElementById) {
	document.all['mdCont'].style.pixelHeight = h;
	document.all['mdContIn'].style.clip = 'rect(0px 675px '+h+'px 0px)';
	}else{
	document.getElementById('mdCont').style.height = h+'px';
	document.getElementById('mdContIn').style.clip = 'rect(0px 675px '+h+'px 0px)';
	}
}

function login(){
	if(document.getElementById('opid').value=='') {l = document.getElementById('logForm');l.submit();}
	else {l = document.getElementById('logFormOP');l.submit();}
}