﻿  // Print the page details
        var trySetPrintDetails = null;
        var detailsWindow = null;
        var details = "";
        var searchFlag = false;
        
        function printDetails()
        {
            details = document.getElementById("PrintSection").innerHTML;
            detailsWindow = window.open("../english/PrintContentPage.aspx", "win1", "width=800,height=600,resizable=yes");

            trySetPrintDetails = window.setInterval("setPrintDetails()", 100);
        }
        function setPrintDetails()
        {
            if (detailsWindow)
            {
                if (detailsWindow.document.getElementById("PrintSection"))
                {
                    if (document.getElementById("PageHeader"))
                    {
                        detailsWindow.document.getElementById("PageTitle").innerHTML = document.getElementById("PageHeader").innerHTML;
                    }
                    detailsWindow.document.getElementById("PrintSection").innerHTML = details;
                    detailsWindow.print();

                    window.clearInterval(trySetPrintDetails);
                }
            }
        }
        function setSearch(formName)
        {
            var myForm = document.getElementById(formName);
            if (!myForm)
                return;
            else
            {
                
                myForm.action = 'http://www.prospecbio.com/english/searchresults.aspx';
                searchFlag = true;
                //myForm.submit();
            }
        }

