function openOnlineApplication(url) {
	var iWidth = 820;
	var iHeight = 625;
   	iLeft = Math.round((screen.width - iWidth) / 2);
    	iTop = Math.round((screen.height - iHeight) / 2);
	newWin = window.open(url, "obf", "resizable=yes,scrollbars=yes,toolbar=no,status=yes,directories=no,menubar=no,location=no,width=" + iWidth  + ",height=" + iHeight + ",left=" + iLeft + ",top=" + iTop);	
}



function getRandomInt(max) {
    return Math.round( Math.random() * (max-1) );
}

function gotoUrlNewWinSimple(s) {
    newWin = window.open(s, "newWin" + getRandomInt(10000));
}

function gotoUrlNewWinSizeCentered(s, iWidth, iHeight) {
    iWidth += 20;
    iHeight += 25;    
    iLeft = Math.round((screen.width - iWidth) / 2);
    iTop = Math.round((screen.height - iHeight) / 2);
    newWin = window.open(s, "newWin" + getRandomInt(10000), "width=" + iWidth + ",height=" + iHeight + ",left=" + iLeft + ",top=" + iTop + ",dependent=yes,location=no,resizable=no,scrollbars=no,status=no");
}


function gotoUrlNewWinSizeCenteredScrollable(s, iWidth, iHeight)
{
    iWidth += 20;
    iHeight += 25;
    iLeft = Math.round((screen.width - iWidth) / 2);
    iTop = Math.round((screen.height - iHeight) / 2);
    newWin = window.open(s, "newWin" + getRandomInt(10000), "width=" + iWidth + ",height=" + iHeight + ",left=" + iLeft + ",top=" + iTop + ",dependent=yes,location=no,resizable=no,scrollbars=yes,status=no");
}
