// JavaScript Document

if (document.images) {


var top_menu01on = new Image()
top_menu01on.src = "images/top/home_btn_f.gif"
var top_menu01off = new Image() 
top_menu01off.src = "images/top/home_btn.gif"

var top_lang_jon = new Image()
top_lang_jon.src = "images/top/jbtn_f.gif"
var top_lang_joff = new Image()
top_lang_joff.src = "images/top/jbtn.gif"

var infoon = new Image()
infoon.src = "images/footer/info_on.gif"
var infooff = new Image() 
infooff.src = "images/footer/info_off.gif"

var qrcodeon = new Image()
qrcodeon.src = "images/footer/qr_code_on.gif"
var qrcodeoff = new Image()
qrcodeoff.src = "images/footer/qr_code_off.gif"


} 


function inact(imgName) {

if (document.images)
 document[imgName].src = eval(imgName + 'off.src');

}


function act(imgName) {
if (document.images)
 document[imgName].src = eval(imgName + 'on.src');

}



//new window

var newWindow
function pop(theURL,this_window,this_width,this_height) {
    if (!newWindow || newWindow.closed) {
        features = "scrollbars=no,menubar=no,toolbar=no,statusbar=yes,resizable=no,width="+ this_width + ",height=" + this_height;
        newWindow = window.open(theURL,this_window,features);
    } else {
alert ("a");
        newWindow.focus()
        newWindow.location = theURL
    }
}
