var searchRadio;
addLoadEvent(
	function() {		
    //on submitting the form
    jQuery("#form_search").submit(function () {
    		    	
    	//get the value of the search text
    	var keyword = jQuery("#form_search .form-text").val();
			var keyLen =  keyword.length;			
			var locid = "alta94027";
			
			var url = "http://find.galegroup.com/ips/infomark.do?prodId=IPS&subjectParam=Locale(en,US,):FQE=(SU,"
				+ keyLen + ")" + keyword + "$&type=search&tabID=T003&subjectAction=DISPLAY_SUBJECTS&prodId=IPS&userGroupName="
				+ locid + "&version=1.0&sgHitCountType=None&searchType=BasicSearchForm&queryId=Locale(en,US,):FQE=(KE,"
				+ keyLen + ")" + keyword + ":And:LQE=(AC,None,8)fulltext$&source=library";
    	
    	//document.location.href = url;		// to open in the same window
			window.open(url);									// to open in a new window
			
    	return false;
    }
   );
	}
);
