// JavaScript Document

function selecturl(s) {
	var gourl = s.options[s.selectedIndex].value;	window.top.location.href = gourl;
}


function confirmMsg(url, msg){
  
  var url;
  var msg;
  
  if( confirm(msg) )
  
    location.href=url;  

}

function hid(el, el2){

  if(document.getElementById(el).checked==true){
    // document.getElementById(el2).style.visibility='visible';
    document.getElementById(el2).style.display='block';
  } 
  
  else {
    //document.getElementById(el2).style.visibility='hidden';
    document.getElementById(el2).style.display='none';
  }

} 


function open_window(width,height) {
    var my_window = window.open('', 'window', 'resizable=yes,scrollbars=1,height='+height+',width='+width, false);
    my_window.focus();
}

function closed(){
  window.close()   
}

