


/**********************************************************************************
** This will open a new window loading the passed url
***********************************************************************************/
function defineNewWindow(stUrl,iHeight,iWidth,winName)
{
	

	var newWin = winName;
	newWin = window.open(stUrl, newWin, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + iWidth + ',height=' + iHeight + ',left=50,top=50,screenX=50,screenY=50');

}
