function showImg(img,imgWidth,imgHeight,target) {
    if (String(target)=="undefined") target="_blank";
    path = "showImg.php?img="+img;
    features = "width=" + imgWidth + ", height=" + imgHeight + ", scrollbars=no status=no resizable=no";
    window_handle = window.open(path,target,features);
    window_handle.focus();    
};

function lastMinute() {
    target="_blank";
    path = "lastMinute.php";
    features = "width=480, height=450, scrollbars=yes status=no resizable=no";
    window_handle = window.open(path,target,features);
    window_handle.focus();    
};

function openVR() {
    target="_blank";
    path = "openVR.php";
    features = "width=810, height=500, scrollbars=no status=no resizable=no";
    window_handle = window.open(path,target,features);
    window_handle.focus();    
};

function showVideo() {
    target="_blank";
    path = "../video.php";
    features = "width=450, height=300, scrollbars=no status=no resizable=no";
    window_handle = window.open(path,target,features);
    window_handle.focus();    
};