// JavaScript Document
function SetSelected()
{
document.searchform.searchterm.select();
}

function replaceAll(text, strA, strB) 
{
while ( text.indexOf(strA) != -1)
{
text = text.replace(strA,strB);
}
return text;
}

function searchFormSubmit(k)
{
if (k == 2){	
window.open("http://search.live.com/results.aspx?form=VCM009&scope=web&mkt=en-US&q=" + replaceAll(document.searchform.searchterm.value," ", "+"));
return false;	
}	

document.searchform.submit();
}