/*function menu() { 

    var navItems = document.getElementById("nav").getElementsByTagName("li"); 
   
    for (var i=0; i< navItems.length; i++) { 
        if(navItems[i].className == "submenu") { 
            navItems[i].onmouseover=function() {
                this.getElementsByTagName('ul')[0].style.display="block";
                this.style.backgroundColor = "#313031";
                this.childNodes[0].childNodes[0].style.cssFloat="right";
            } 
            navItems[i].onmouseout=function() {
                this.getElementsByTagName('ul')[0].style.display='none';
                this.style.backgroundColor = "#7B9600";
                this.childNodes[0].childNodes[0].style.cssFloat="left";
                
            } 
        }
    } 

}*/
function getLink(strValue){
	window.open("frames.php?Link="+strValue);
}
