
/* this is triggered upon a search query */
function doSearch(){
//	document.forms[0].action="default.aspx?id=306&searchAction=search";
//	document.forms[0].action="http://www1.sungard.com/search/index.php?q=&ul=&jumpwords=no&wf=8861";
document.forms[0].action = "http://64.238.196.212/search?q=&restrict=&ie=&site=sungard&output=xml_no_dtd&client=sungard&lr=&proxystylesheet=sungard&oe=";
	document.forms[0].submit();
}

function catchEnter(event){
 if (document.all){
  if (event.keyCode == 13){
   event.returnValue=false;
   event.cancel = true;
   doSearch();
  }
 }
 else if (document.getElementById){
  if (event.which == 13){
   event.returnValue=false;
   event.cancel = true;
   doSearch();
  }
 }
 else if(document.layers){
  if(event.which == 13){
   event.returnValue=false;
   event.cancel = true;
   doSearch();
  }
 }
} 

//FUNCTION REFERENCED FROM PRODUCTS AND SERVICES PAGE PICKLISTS
function jumpToPage(target,selObj,restore) {
	eval(target+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}