<script type="text/javascript">
function peoplesearch()
{
var people = document.getElementById("ctl00_PlaceHolderSearchArea_ctl01_ctl03").value;
if (people == "Search this site...") {
alert("Please Enter The People Name");
return false;
}
else {
var url = '/Search%20Centre/Pages/peopleresults.aspx?k=' + people;
window.open(url);
}
}
function investagoogle()
{
var Gooleserch = document.getElementById("ctl00_PlaceHolderSearchArea_ctl00_S3031AEBA_InputKeywords").value;
if (Gooleserch == "Search this site...") {
alert("Please Enter the key word ");
return false;
}
else {
var url = 'http://www.google.com?q=' + Gooleserch;
window.open(url);
//window.location = (url);
}
}
</script>
Comments
Post a Comment