function hideDiv() { 
createCookie("shortcutID",1,1);
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById("hideshow").style.display = "none"; 
document.getElementById("hideshow1").style.display = "block"; 
} 
else { 
createCookie("shortcutID",1,1);
if (document.layers) { // Netscape 4 
document.hideshow.display = "none";  
document.hideshow1.style.display = "block"; 
} 
else { // IE 4 
createCookie("shortcutID",1,1);
document.all.hideshow.style.display = "none"; 
document.all.hideshow1.style.display = "block";  
} 
} 
} 

function showDiv() { 
createCookie("shortcutID",0,1);
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById("hideshow").style.display = "block"; 
document.getElementById("hideshow1").style.display = "none"; 
 //return false;
} 
else { 
if (document.layers) { // Netscape 4 
createCookie("shortcutID",0,1);
document.hideshow.display = "block";  
document.hideshow1.style.display = "none";  
} 
else { // IE 4 
createCookie("shortcutID",0,1);
document.all.hideshow.style.display = "block";  
document.all.hideshow1.style.display = "none"; 
} 
} 
} 

function SetShortcutID(shortcutID){
 createCookie("shortcutID",shortcutID,1);
 return false;
}
 
function createCookie(name,value,days)
 {
   if (days)
   {
    var date = new Date();
    date.setTime(date.getTime()+(60*60*1000));
    var expires = "; expires="+date.toGMTString();
   }
   else var expires = "";
   document.cookie = name+"="+value+expires+";";
 }



