
function openPopup(page, width, height)
{
openPopupFrameset(page, width, height);
}


function openPopupFrameset(page, width, height)
{
var window_width = 400;
var window_height = 500;

if (typeof(width) != "undefined")
window_width=width;
if (typeof(height) != "undefined")
window_height=height;
window.open("/ibt/main/de/site/time4you/ibt/about/popup-frameset.html?load="+page, "hints","height="+window_height+",width="+window_width+",status=no,scrollbars=yes,toolbar=no,resizable=yes");
}

function openPopupLocal (page, width, height)
{
var window_width = 400;
var window_height = 500;

if (typeof(width) != "undefined")
window_width=width;
if (typeof(height) != "undefined")
window_height=height;
window.open(page, "enroll","height="+window_height+",width="+window_width+",status=no,scrollbars=yes,toolbar=no,resizable=yes");

}
