function DoOpen(OrgID) 
{
	
 var WindowScreenHeight, WindowScreenWidth, setup, winname,tempOrgID;
 
 WindowScreenWidth = screen.availWidth-10;
 WindowScreenHeight = screen.availHeight;

// added orgID to querystring to display cateogry desc in login page rb
setup="http://www.venturecd.net/loginadmin.asp?SH=" + WindowScreenHeight + "&ref=" + OrgID;
winname = window.open(setup, "LoginWindow", "height=" + WindowScreenHeight + ",width=" + WindowScreenWidth + ",toolbar=no,location=no,directories=no,menubar=no,resizable=yes,copyhistory=no,scrollbars,top=0,left=0",true);
if (!winname)
	alert("Your browser has blocked the new window from opening.  Please check your browser settings to allow Popups for this site.");
}

