<!-- 
function tocItem (name, width, height) {
var sName = '/images/navigation/' + name;
this.on = new Image();
this.on.src = sName + '_roll.jpg';
this.off = new Image();
this.off.src = sName + '_off.jpg';
}

function toc_new (name) {
tocItem[name] = new tocItem(name);
}
function img_act (imgName) {
    if (document.images) document[imgName].src = tocItem[imgName].on.src;
}
function img_inact (imgName) {
    if (document.images) document [imgName].src = tocItem[imgName].off.src;
}
function load_toc (name, num) {
//for (i = 1; i <= num; i++) toc_new(name + i);
toc_new('si');
toc_new('ad');
toc_new('cc');
toc_new('gi');
toc_new('bh');
toc_new('kb');
toc_new('smtext');
toc_new('midtext');
toc_new('lrgtext');
toc_new('home');
}
    if (document.images != null) 
    load_toc ('toc', 10);

function doCancel(){
	return (confirm("All changes made will be lost. Do you want to continue?\nClick 'OK' to continue or\n'Cancel' to stay on this page."))
}

function doDelete(sType){
	return (confirm("Are you sure you want to delete this " + sType + "?\nClick 'OK' to delete or\n'Cancel' to stay on this page."))
}

function showHide(sElement, bShow)
{
	if (bShow==true)
		eval(sElement).style.display='';
	else
		eval(sElement).style.display='none';
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_jumpMenuGo(selName,targ,restore){ //v3.0
  var selObj = MM_findObj(selName); if (selObj) MM_jumpMenu(targ,selObj,restore);
}

function warning_openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function doPrint(sFileName) {
mywin = window.open('/print_page.aspx?fl='+sFileName,"w_print",'toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=800,height=600');
}

function GoogleSearch(){
//alert('Search is not available at this time');
//return false;
var searchString = document.siteSEARCH.q.value;
if (searchString.length == 0)
{
	alert("Please enter a search term.");
	return false;
}
else
{
	searchString = searchString.replace('&','%26');
	top.location = "/search_results.aspx?q=" + searchString;
}
}
function GoogleSearchOld(){
var searchString = document.siteSEARCH.q.value;
if (searchString.length == 0)
{
	alert("Please enter a search term.");
	return false;
}
else
{
	searchString = searchString.replace('&','%26');
	top.location = "http://pfizersearchext.pfizer.com/search?site=pfizerplus&client=pfizerplus&output=xml_no_dtd&proxystylesheet=pfizerplus&q=" + searchString;
}
}


// -->
