// javascript document study : LBC
<!--
function feelingLucky() {
value=document.atomz.elements['sp-q'].value;

if ( value == "Search..." ){
        alert("You may enter a search word or phrase.");
		return false;
    }

if ( value == "" ){
        alert("You did not enter a search word. Please try again.");
		return false;
    }

if ( value == "search" ){
        alert("Help yourself in getting the most out of searching My.LaSalle web site." + '\n' + "Please try the Advanced Search Mode.");
		window.location="https://my.dlsu.edu.ph/search/";
		return false;
    }

if ( value == "mylasalle" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }
	
if ( value == "my lasalle" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }

if ( value == "my la salle" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }

if ( value == "mls" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }

if ( value == "my.lasalle" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }
	
if ( value == "my dlsu" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }
	
if ( value == "mydlsu" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }

if ( value == "my.dlsu" ){
		alert("You will be redirected to My.LaSalle web site." + '\n' + "Click OK to proceed.");
        window.location="http://my.dlsu.edu.ph";
		return false;
    }
	
if ( value == "intranet" ){
		alert("You will be redirected to DLSU Intranet site." + '\n' + "Click OK to proceed.");
        window.location="http://intranet.dlsu.edu.ph";
		return false;
    }

if ( value == "apex" ){
        window.location="http://my.dlsu.edu.ph/";
		return false;
    }
	
if ( value == "csb" ){
		alert("You will be redirected to DLS-College of Saint Benilde web site." + '\n' + "Click OK to proceed.");
        window.location="http://www.dls-csb.edu.ph";
		return false;
    }
	
if ( value == "benilde" ){
		alert("You will be redirected to DLS-College of Saint Benilde web site." + '\n' + "Click OK to proceed.");
        window.location="http://www.dls-csb.edu.ph";
		return false;
    }
	
if ( value == "mba" ){
		alert("You will be redirected to GSB MBA web site." + '\n' + "Click OK to proceed.");
        window.location="http://www.dlsu.edu.ph/academics/continuing/cbe/gsb/";
		return false;
    }
	
if ( value == "ivle" ){
		alert("You will be redirected to DLSU IVLE web site." + '\n' + "Click OK to proceed.");
        window.location="http://ivle.dlsu.edu.ph/";
		return false;
    }

else
	{
    return true;
    }
}
//  End -->