<!--
function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;
//-->
<!--
	function validate_form ( )
		{
	valid = true;
        if ( document.resform.name.value == "" )
        {
                alert ( "Please fill in the 'Name' box." );
                valid = false;
        }
        if ( document.resform.email.value == "" )
        {
                alert ( "Please fill in the 'Email' box." );
                valid = false;
        }
        if ( document.resform.cond.checked == false )
        {
                alert ( "Please check the Terms & Conditions box." );
                valid = false;
        }
        return valid;
}
//-->
<!--
function checkrequired(which){
	var pass=true
	if (document.images){
	for (i=0;i<which.length;i++){
	var tempobj=which.elements[i]
	if (tempobj.title.substring(0,3)=="Req"){
	if (((tempobj.type=="text"||tempobj.type=="textarea")&&tempobj.value=='')||(tempobj.type.toString().charAt(0)=="s"&&tempobj.selectedIndex==-1)){
	pass=false
	break
	}
	}
	}
	}
	if (!pass){
	alert("One or more required fields are incomplete\nUn ou plusieurs éléments requis n'ont pas été saisi")
	return false
	}
	else
	return true
	}
	
//-->
	var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=500,left=100,top=100,toolbar=no,scrolling=no,status=no,resize=no');
	if (window.focus) {newwindow.focus()}
}
