	<!-- // begin hiding
 
var value = null;
function OpenWin(value,wval,hval) 
	{
	window.open(value,'popup','resizable=yes,width=' + wval + ',height=' + hval + ',status=no,location=no,toolbar=no,menubar=no,scrollbars=yes');
	}		

function confirmSubmit()
{
var agree=confirm("Press OK to confirm.");
if (agree)
	return true ;
else
	return false ;
}

function ResizeToFit()
{
var imgWidth
var imgHeight

imgWidth = document.imgAlt.width + 100
imgHeight = document.imgAlt.height + 80

window.resizeTo(imgWidth, imgHeight)
}

function imgswap(primary, imgname1, secondary, imgname2)
{
 eval("document." + primary + ".src = '" + imgname1 + "'");
 eval("document." + secondary + ".src = '" + imgname2 + "'");	
}
defaultStatus = "De La Salle - College of Saint Benilde";

//if (window == top) top.location.href = "default.htm";

function changeColors(subcatcell)
{
	subcatcell.style.backgroundColor="#CFCBC2"
}
function restoreColors(subcatcell)
{
	subcatcell.style.backgroundColor=""
}

<!-- //the hiding text
function writeSource(div) {
	if (!document.getElementById) { return; }
	var o = document.getElementById(div);
	if (typeof(o) == "undefined" || o==null) { return; }
	var s = o.innerHTML;
	if (s==null || s.length==0) { 
		return;
		}
	else {
		var i;
		for(i=0;s.charAt(i)==" "||s.charAt(i)=="\n"||s.charAt(i)=="\r"||s.charAt(i)=="\t";i++) {}
		s = s.substring(i);
		for (i = s.length; i>0; i--) {
			if (s.charAt(i)=="<") {
				s = s.substring(0,i) + "&lt;" + s.substring(i+1) ;
				}
			}
		for (i = s.length; i>0; i--) {
			if (s.charAt(i)==">") {
				s = s.substring(0,i) + "&gt;" + s.substring(i+1) ;
				}
			}
		for (i = s.length; i>0; i--) {
			if (s.charAt(i)=="\t") {
				s = s.substring(0,i) + "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;" + s.substring(i+1) ;
				}
			}
		for (i = s.length; i>0; i--) {
			if (s.charAt(i)=="\n") {
				s = s.substring(0,i) + "<BR>" + s.substring(i+1) ;
				}
			}
		s = s + "<BR>";
		}
	document.write('<A STYLE="font-family:arial; font-size:x-small; text-decoration:none;" HREF="#" onClick="var d=document.getElementById(\'jssource'+div+'\').style; if(d.display==\'block\'){d.display=\'none\';this.innerText=\'+ Show Source\';}else{d.display=\'block\';this.innerText=\'- Hide Source\';} return false;">+ Show Source</A><BR>');
	document.write('<SPAN ID="jssource'+div+'" STYLE="display:none;background-color:#EEEEEE"><TT>'+s+'</TT></SPAN>');
	}
