/*function lrg(url) {

    //window.onerror = null;
	TLRFC = window.open(url,'Toronto Lions RFC',"location=0,left=150,top=100, scrollbars=1,resizable=0,width=700,height=700");
  //if (window.focus) {TLRFC.focus() }
}*/



 var WindowObjectReference = null; // global variable

 function lrg(strUrl, strWindowName)
 {
  if(WindowObjectReference == null || WindowObjectReference.closed)
  {
    WindowObjectReference = window.open(strUrl, strWindowName,
           "location=1,left=150,top=100, scrollbars=yes,resizable=yes,width=700,height=700");
  }
  else
  {
    WindowObjectReference.focus();
  };
 }

