// JavaScript Document
// Define a function to go to a different page
function goElsewhere ( ) {
document.location="http://www.csc.gov.ph/cscweb/cscweb.html";
}

// Call this function in 10000 microseconds (15 seconds)
self.setTimeout('goElsewhere()', 15000) 
