
window.onload = init;

function init()
{
	openModalPopup('popupDiv.html', '', '469', '297')
}

function openModalPopup(url, caption, width, height)
{
    var wh = width + " " + height + "";
    
    MOOdalBox.open(url, caption, wh);
}

