function OpenWin(url,iWidth,iHeight)
{
	var sValues = "height=" + iHeight + "," + "width=" + iWidth + "," + "left=0,top=0,menubar=0,toolbar=0,status=0,scrollbars=1,resizable=0";
	var newwin = "";
	newwin = window.open(url,"BBHNZ",sValues);
	newwin.focus();
}