// JavaScript Document

if(document.getElementById("registrationCallOut"))
{
    document.getElementById("registrationCallOut").innerHTML = "<h4>Sign Up for TORISEL Updates</h4>"
    + "<p>Gain access to additional content on the TORISEL web site and receive updates.<br /> You'll also get free, unlimited access to:</p>"
    + "<ul><li>The 5 minute Clinical Consult<br /> 2007-2008</li><li>Epocrates<sup>&reg;</sup> Online Premium Reference</li><li>A.D.A.M. QuickSheets</li></ul>"
    + "<a href='https://www.wyeth.com/register?flow=1231&WT.ac_ID=WYBAN0001&WT.ac_ev=click'>Register Now</a>";
}

window.addEvent('load', function() {
                                    
    if(document.getElementById("product")) 
    {
        var productBox1= document.getElementById("product");
        if(productBox1.options[productBox1.selectedIndex].value == 0)
        {
            var productBox1= document.getElementById("product");
            for(i=0;i<productBox1.length;i++)
            {
                if(productBox1.options[i].text == 'Torisel')
                {
                    productBox1.selectedIndex = i;
                    break;
                 }

             }
        }
    }
});

window.addEvent('domready', function() {

    //Add the global Job Number for Torisel on the bottom part
    $('hcpFooterJobNumber').innerHTML='TRS00204/291170-01'

    //Add the job Number for the shared pages
    if(document.location.href.match("/contact/medical_information_inquiry$") || document.location.href.match("/hcp/torisel/product$") ) {
        $$('p.number_text')[0].innerHTML='257186-01';
    }
    if(document.location.href.match("/hcp/torisel/register$") ) {
        $$('div.number_text')[0].innerHTML='257186-01';
    }   
	
	


    if(document.location.href.match("/hcp/torisel/register")){
		var registerTag = new new Element('script', {
										  'type': "text/javascript",
										  'html' : [
													'var axel = Math.random() + "";',
													'var a = axel * 10000000000000;',
													'document.write(\'<iframe src="http://fls.doubleclick.net/activityi;src=2684911;type=torhcp;cat=page60;ord=\' + a + \'?" width="1" height="1" frameborder="0"></iframe>\');'].join("")
										  });
        $$('head').inject(registerTag);
    }
    
    //Set the /home to / in order to avoid a redirect to /hcp/torisel/home
    $$('#sec_ln a[href$=/home]')[0].set('href','/');
   
});
