﻿function forwlogin(path){
var ah = screen.availHeight ;
var aw = screen.availWidth ;
var brw = 'no';
if (window.XMLHttpRequest) { 
 if(!window.ActiveXObject){ 
  brw = 'yes';
  window.open (path,"_blank"," fullscreen="+brw+",toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=yes,status=yes");
 } else {
  window.open (path,"_blank","width="+aw+",height="+ah+",left=0,screenX=0,innerHeight="+ah+",innerWidth="+aw+",top=0,screenY=0, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=yes,fullscreen="+brw+",status=yes");
 }
} else {
 window.open (path,"_blank","width="+aw+",height="+ah+",left=0,screenX=0,innerHeight="+ah+",innerWidth="+aw+",top=0,screenY=0, toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=yes,fullscreen="+brw+",status=yes");
}

}


