// JavaScript Document
/* to call from main page to print page */

function writeContent(pagevar)
{
	
	 var getContentWin=window.opener;
  var contentPrint=getContentWin.document.getElementById('content-links').innerHTML;
  document.getElementById('getContent').innerHTML=contentPrint;
  if(window.opener.location.pathname == "/tell-a-friend.html")
		{
  var contentPrint=getContentWin.document.getElementById('content-links').innerHTML;
    contentPrint+=getContentWin.document.getElementById('important-safety-information').innerHTML;
 contentPrint+=getContentWin.document.getElementById('TellPrint').innerHTML;
  document.getElementById('getContent').innerHTML=contentPrint;		
  	  document.getElementById('important-safety-information_print').style.display='none';

  }
  
  if(window.opener.location.pathname == "/pdc/zostavax/request-more-information/Shingles-Information-thank-you.jsp")
  {
	  document.getElementById('JobRMI').style.display='inline';
	  document.getElementById('JobNum').style.display='none';
	  document.getElementById('JobNum1').style.display='none';
  }
  
  
		
  if(window.opener.location.pathname == "/pdc/zostavax/request-more-information/Shingles-Information.jsp")
  {
	  document.getElementById('JobRMI').style.display='inline';
	  document.getElementById('JobNum').style.display='none';
	  document.getElementById('JobNum1').style.display='none';
	  document.getElementById('important-safety-information_print').style.display='none';
  }
  else
	{
  if((window.opener.location.pathname == "/shingles-facts.html")||(window.opener.location.pathname == "/find-zostavax/find-zostavax.html"))
  {
	  document.getElementById('JobRMI').style.display='none';
	  document.getElementById('JobNum').style.display='none';
	  document.getElementById('JobNum1').style.display='inline';
  }
	}
	
		
}


 function printWindow()
 {
    var path = document.location.pathname;

    switch (path)
    {
       case "/shingles-questions.html":
          window.open("/shingles-questions_print.html");
          return;
      
       /*case "/pdc/zostavax/findLocation.do":
          var searchType = window.searchType;
          if (searchType != "MAVP" && searchType != "ZSTVX")
          {
             searchType = "ZSTVX";
          }
          goToPrinterFriendly("medSearch", 10, searchType)
          return;*/
    }

    // all others   
    window.open("/print.html");
 }
 
 
  function printFriendly()
 {
          var searchType = window.searchType;
          goToPrinterFriendly("medSearch", 10, searchType)
          return;
}