// sanofi header

var ua = navigator.userAgent.toLowerCase(); 
this.ua= ua;
this.isIE        = ( (ua.indexOf("msie") != -1) && (ua.indexOf("opera") == -1) && (ua.indexOf("webtv") == -1) ); 
this.versionMinor = parseFloat(navigator.appVersion); 
if (this.isIE && this.versionMinor >= 4) {
                        document.write ("<style>")
						
						document.write ("#navleft {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + window.root + "images/consumer/new/nav_left.png',sizingMethod='scale'); background-repeat:no-repeat; height:35px; width:19px; float:left; }")
						document.write ("#navright {filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + window.root + "images/consumer/new/nav_right.png',sizingMethod='scale'); background-repeat:no-repeat; height:35px; width:17px; float:left; }")
						document.write ("</style>")
}           

else{
                        document.write ("<style>")
						document.write ("#navleft {background-image:url(" + window.root + "images/consumer/new/nav_left.png); background-repeat:no-repeat; height:35px; width:19px; float:left;}")
						document.write ("#navright {background-image:url(" + window.root + "images/consumer/new/nav_right.png); background-repeat:no-repeat; height:35px; width:17px; float:left;}")
                        document.write ("</style>")
}           
     


function goTo()
{
    box = document.forms[0].CancerBox
	destination = box.options[box.selectedIndex].value;
    if(destination == "")
    {
    }else{
	    location.href = destination;
    }
}