// BEGIN Standard popup window script BEGIN //
   
 var popAddress = '';
var popWidth = '';
var popHeight = '';
var popScrollbars = 'yes';
var popResizable = 'yes';

br=getBrowser();





   window.name="opener";
   

   function popUpSearchSpy(url) {
      var detWindow=""
      detWindow=window.open(url,'searchspy','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=599,height=297');
   }
   
 function popPrivacy() {
      var detWindow=""
      detWindow=window.open('/services/legal/privacy/pop','privacypolicy','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=524,height=500');
   }
   
   function popSlide(url) {
      var detWindow=""
      detWindow=window.open(url,'slideshow','menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,width=910,height=570');
   }
   
	function go(url) {
		if (opener && !opener.closed) {
         opener.location.href = url;
         window.close();
		} else { 
		self.location.href = url;
		}
    }
   function goToURL(url) {
      if (url != "") { self.location=url; }
   }

// END Standard popup window script END //   

 

// Forms popup window script  //  


window.name="opener";

function seeWindow(address,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,'detailWindow','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,width='+width+',height='+height);
}


function convertWindow(address,width,height) { 
       var detWindow="" 
        detWindow=window.open(address,'detailWindow','toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=yes,resizable=no,width='+width+',height='+height);
}


function popMaster(name,type,queryString) {
var hostOverrideToUse = "";
if (typeof hostOverride == "string") {
	hostOverrideToUse = hostOverride;
}

 
  if (type == 'default') {
    
        if (name =='disclaimerPop') {
            popAddress = '/popups/community/conditions_utilisation.html';
            popWidth = '530';
            popHeight = '620';
        } 
  }
  
  
  
  if (typeof queryString != 'undefined') {
        popAddress += "?" + queryString;
    }
    window.open(popAddress,name,'toolbar=no,location=0,directories=no,status=no,menubar=no,scrollbars='+popScrollbars+',resizable='+popResizable+',width='+popWidth+',height='+popHeight);
}


  
