function search_()
{
var	Getkey=document.getElementById("modval_").value;
//var Gettype=document.getElementById("type_").value;
if (Getkey!='')
	{
		//window.location="/seachlist.asp?gettype="+Gettype+"&getKey="+Getkey;
		window.location="/all-search/"+Getkey+".htm";
	}
	else
	{
	document.getElementById("modval_").focus();
	}
}

//document.onselectstart=function(){return   false;}
//if (window.Event) 
//document.captureEvents(Event.MOUSEUP); 

function nocontextmenu() 
{
event.cancelBubble = true
event.returnValue = false;

return false;
}

function norightclick(e) 
{
if (window.Event) 
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}

}

document.oncontextmenu = nocontextmenu; //对ie5.0以上
document.onmousedown = norightclick; //对其它浏览器

