document.write("<script src='js/jquery.min.js' type='text/javascript'></script>");
document.write("<script src='js/fadeslideshow.js' type='text/javascript'></script>");
document.write("<script src='js/ajax.js' type='text/javascript'></script>");
document.write("<script src='js/marquee.js' type='text/javascript'></script>");
document.write("<script src='js/modeldialog.js' type='text/javascript'></script>");

//-------------------------------------------------
function popup_fullscreen(url){
    if(window.innerWidth)
      window.open(url,"fullscreen=yes,resizable=yes,scrollbars=yes ")
    else
      window.open(url,'', "fullscreen=yes,resizable=yes,scrollbars=yes ")
}

function popup(url,width,height){
    if(window.innerWidth){			// other browser
	LeftPosition = window.innerWidth/2 - width/2;
	TopPosition  = window.innerHeight/2 - height/2;
    }
    else{					// for IE
	LeftPosition = parseInt(window.screen.width/2) - width/2;
	TopPosition  = parseInt(window.screen.height/2) - height/2;
    }
    attr = 'resizable=no,scrollbars=yes,width=' + width + ',height=' + height + ',screenX=300,screenY=200,left=' + LeftPosition + ',top=' +TopPosition + '';
    popWin=open(url, 'new_window', attr);
}

function loading(){
  document.getElementById('loading').style.visibility = "visible";
}

function hide(){
  document.getElementById('loading').style.visibility = "hidden";
}

function set_main_menu(m1,m2,m3,m4,m5){
  document.getElementById(m1).className = 'current';
  document.getElementById(m2).className = '';
  document.getElementById(m3).className = '';
  document.getElementById(m4).className = '';
  document.getElementById(m5).className = '';
}

