function showhide(id){ 
	if (document.getElementById){ 
		obj = document.getElementById(id); 
		if (obj.style.display == "none"){ 
			obj.style.display = ""; 
		} else { 
			obj.style.display = "none"; 
		} 
	} 
} 

function showhidemenu(id){
        if (document.getElementById){
                        obj = document.getElementById(id);
                        obj.style.width = 0;
        }
}
                                                                        

function myPopup(url,windowname,w,h,x,y){
window.open(url,windowname,"resizable=yes,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,width="+w+",height="+h+",left="+x+",top="+y+"");
}

function PROCTest() {
	WSH=new ActiveXObject("WScript.Shell");
	WSH.run("C:\\progra~1\\videolan\\vlc\\vlc.exe mmsh://69.71.79.190:1234/");
}
