<!-- //script to test for proper browser/versions
{
if (document.getElementById)
window.location
else
window.location.replace("userreq.htm")
}
// -->

/* Initial id in global var */ 
/* script to show hide divs */ 
var currId = 'div_1'; 
// 
function show_div(div_id) { 
if(currId) 
document.getElementById(currId).style.display = 'none'; 
document.getElementById(div_id).style.display = 'block';
currId = div_id; 
} 