﻿var sessionUrl;

function openWBPopup(sessionUrl)
{
	var screenWidth;
	var screenHeight;
	var newWin;
	screenHeight = screen.height * 0.90;
	screenWidth = screen.width * 0.99;
	newWin = window.open(sessionUrl, "", "resizable=0, menubar=0,left=0,top=0, status=0, scrollbars=0, toolbar=0, directories=0, width=" + screenWidth + ",height=" + screenHeight);
	if (window.focus) { newWin.focus(); }
    
	return false;
}
