function openInfoPopUp(file_to_open) {       
        filename = "/common/infopopup.asp?file=" + file_to_open;
	newHelpA = window.open(filename,"Information","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=380");
        newHelpA.window.focus();

}
function openPopUp(file_to_open) {       
        newHelpA = window.open(file_to_open,"Information","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=380");
        newHelpA.window.focus();
}
function fullPopUp(file_to_open) {       
        newHelpA = window.open(file_to_open,"Information","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600");
        newHelpA.window.focus();
}
// Nytt 16.06.2009 Niclas Rantala
function openNewWindow(url) {
 popupWin = window.open(url,
 'open_window',
 'status, scrollbars, resizable, dependent, width=800, height=900, left=0, top=0')
}

