function openwindow_intern(theURL,w,h,l,t) {
var n = window.open(theURL,"new_win","width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no")
}

function openwindow_image(theURL,w,h,l,t) {
var n = window.open(theURL,"new_win","width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no")
}

function openwindow_movie(theURL,w,h,l,t) {
var n = window.open(theURL,"new_win","width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no")
}

function openwindow_info(theURL,w,h,l,t) {
var n = window.open(theURL,"new_win","width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",toolbar=yes,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes")
}

function openwindow_pdf(theURL,w,h,l,t) {
var n = window.open(theURL,"new_win","width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes")
}

function openwindow_web(theURL,w,h,l,t) {
var n = window.open(theURL,"new_win","width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",toolbar=yes,location=yes,status=no,menubar=yes,scrollbars=yes,resizable=yes")
}
