function NewWindow(mypage,myname,w,h,scroll,pos)
{
  var win=null;
  var host = '';
  if(location.host == 'www.webduniamail.com:8080')
  {
    host="/calendar/";
  }
  else if(location.host == 'calendardev.webdunia.com:8080')
  {
    host="/";
  }
  else if(location.host == 'calendartest.webdunia.com')
  {
    host="/";
  }
  else if(location.host == 'calendar.webdunia.com')
  {
    host="/";
  }
if(typeof bwchk =='function' && bwchk() == 'OB')
{
	h-=18;
	w -=15; 
}

LeftPosition=(screen.width)?(screen.width-w)/2:100;
TopPosition=(screen.height)?(screen.height-h)/4:100;
mypage = host+mypage;
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
}
function bwchk()
{
     if(navigator.appName == "Microsoft Internet Explorer")
     {
       return 'IE';
     }
     else
     {
       return 'OB';
     }
}