<!-- Begin
// function popUp(URL) {
// day = new Date();
// id = day.getTime();
// eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=613,height=480,left = 440,top = 262');");
// }
// End -->


function autoIframe(frameId){
try{
frame = document.getElementById(frameId);
innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
objToResize = (frame.style) ? frame.style : frame;
objToResize.height = innerDoc.body.scrollHeight + 10;
}
catch(err){
window.status = err.message;
}
}

<!--//
function Venster(URL) {
venster = window.open(URL, 'popupvenster', 'width=220, height=250, resizable=no, menubar=no, scrollbars=no, status=no, toolbar=no');
}
//-->