﻿function key_Onkey(event1,url) { 
var kCode = String.fromCharCode(event1.keyCode);
if(kCode == "\n" || kCode == "\r")
{   
	if (url=="Library Pesona Indonesia"){
		testLib(document.getElementById('key').value,url);}
	else { test(document.getElementById('key').value,url);} 
}
}

function test(x,url)
{
	document.location="http://"+ location.host + "/_layouts/OSSSearchResults.aspx?k="+ x +"&cs=This List&u=http://"+ location.host + "/Lists/"+url;
}
function testLib(x, url)
{
	document.location="http://"+ location.host + "/_layouts/OSSSearchResults.aspx?k="+ x +"&cs=This Site&u=http://"+ location.host+"/"+url;
}
