
function loadOpener(URL) {	
	opener.location = URL;
}

function loadOpenerAndClose(URL) {
	opener.location = URL;
	window.close();
}

function popUp(URL,windowName,width,height) {	
    var features =
        'width='        + width +
        ',height='      + height +
        ',location=no' +
        ',menubar=no' +
        ',scrollbars=yes' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=yes,top=10,left=10';

    window.open (URL, windowName, features);    
    //return false;
}

function popUpImage(path)
    {  
        var new_path = "big_photo.aspx?path=" + path +"&pageTitle=ImageDetail";
        window.open (new_path, "promo","location=0,status=1,scrollbars=no, width=550,height=550"); 
    }

function popUpFullscreen(URL,windowName,width,height) {	
    var features =
        'width='        + width +
        ',height='      + height +
        ',location=no' +
        ',menubar=no' +
        ',scrollbars=yes' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=yes,top=10,left=10';

    window.open (URL, windowName, features);
}

function PopUpNoScroll(URL,windowName,width,height) {	
    var features =
        'width='        + width +
        ',height='      + height +
        ',location=no' +
        ',menubar=no' +
        ',scrollbars=no' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=yes,top=10,left=10';

    window.open (URL, windowName, features);
}

function ventilationWindow(URL,windowName,width,height,features) {	
    var windowName = 'ventilation';
    var features =
        'width='        + 400 +
        ',height='      + 400 +
        ',location=no' +
        ',menubar=no' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=yes,top=10,left=10';
    
    window.open (URL,windowName,features);
}

function openVideoPopup(URL,windowName,width,height,features) {	
    var windowName = 'ventilation';
    var features =
        'width='        + 400 +
        ',height='      + 400 +
        ',location=no' +
        ',menubar=no' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=yes,top=10,left=10';
    
    window.open (URL,windowName,features);
}


function AxxispopUpVideo(URL,windowName,width,height) {	
    var features =
        'width='        + width +
        ',height='      + height +
        ',location=no' +
        ',menubar=no' +
        ',scrollbars=no' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=yes,top=10,left=10';

    window.open (URL, windowName, features);
}


function PopUpNoResize(URL,windowName,width,height) {	
    var features =
        'width='        + width +
        ',height=' + height +
        ',location=no' +
        ',menubar=no' +
        ',scrollbars=yes' +
        ',status=no' +
        ',toolbar=no' +
        ',resizable=no,top=10,left=10';

    window.open (URL, windowName, features);
}





function logOutWindow() {
	popUp('/log_out.cfm','log_out',335,300);
}
function logInWindow() {
	popUp('/log_in.cfm','log_out',335,300);
}

