﻿function printPage(){
        var f = document.expertForm;
        var url = getURL();
	var pageText = "<span class=\"text\">Welcome to the Experts & Services Custom Expert Search Feature that's offered in ";
	pageText+= "collaboration with Round Table Group, Inc.  A renowned expert services firm, Round ";
	pageText+= "Table Group connects you to an additional 65,000 top academic and industry experts. ";
	pageText+= "Its mission is to locate, assess, and present you with fully vetted expert candidates ";
	pageText+= "based on the specific needs of your case.  This special, additional feature is helpful ";
	pageText+= "to users of Experts & Services when there's a need for an industry or academic ";
	pageText+= "testifying expert or consultant beyond what's provided on the E&S directory, or a ";
	pageText+= "more customized and personalized approach to finding the perfect expert is needed. ";
	pageText+= "<br><br>";
	pageText+= "The Custom Search process is simple:";
	pageText+= "<ul>";
	pageText+= "<li>Complete the online form below, which will be sent to one of RTGs dedicated staff of trained professionals.</li>";
	pageText+= "<li>You can also print this form and fax it to 202-478-0346, or call us directly at 202-595-2000.</li>";
	pageText+= "<li>A Round Table Group professional will contact you to discuss the case facts and brainstorm with you about the credentials and other details of the ideal experts.</li>";
	pageText+= "<li>RTG will search its network of experts (including those appearing in E&S) and conduct a rigorous external global search.</li>";
	pageText+= "<li>RTG will send you resumes of qualified and interested expert candidates.</li>";
	pageText+= "<li>RTG will arrange for telephone and in-person interviews.</li>";
	pageText+= "<li>You will pay RTG a finder's fee in addition to the hourly rate quoted you only if you retain one of RTG's experts. If you decide not to retain anyone presented to you by RTG, no charges apply.</li>";
	pageText+= "</span>";
	var htmlBody = "<html>";
	htmlBody+= "<head>";
	htmlBody+= "<title>Print Page</title>";
	htmlBody+= " <link href= \"";
	htmlBody+= url +"css/layoutCss.css\" REL=\"stylesheet\" media=\"screen\">";
	htmlBody+= "</head>";
	htmlBody+= "<body bgcolor=\"FFFFFF\" leftmargin=\"0\" rightmargin=\"0\" topmargin=\"0\">";
	htmlBody+= "<table width=\"620\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">";
	htmlBody+= "<tr>";
	htmlBody+= "<td>";
	htmlBody+= "<img src=\" ";
	htmlBody+= url +"images/footer.gif\" width=\"620\" height=\"60\" border=\"0\">";
	htmlBody+= "</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<td  align=center>";
	htmlBody+= "<table width=\"580\" cellspacing=\"2\" cellpadding=\"2\" border=\"0\">";
	htmlBody+= "<tr>";
	htmlBody+= "<td colspan=2 align=center><span class=\"headerredl\">Initiate Custom Expert Search</span></td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr>";
	htmlBody+= "<td colspan=2>";
	htmlBody+= pageText;
	htmlBody+= "</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr>";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Firm:</span></td>";
	htmlBody+= "<td class=\"label\">"+f.firm.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr>";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Contact:</span></td>";
	htmlBody+= "<td class=\"label\">"+f.contact.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Address:</span></td>";
	htmlBody+= "<td class=\"printlabel\">"+f.address.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr>";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Email:</span></td>";
	htmlBody+= "<td class=\"label\">"+f.email.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr>";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Phone:</span></td>";
	htmlBody+= "<td class=\"label\">"+f.phone.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr>";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Side:</span></td>";
	htmlBody+= "<td class=\"label\">"+f.side.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Stage of Case:</span></td>";
	htmlBody+= "<td class=\"printlabel\">"+f.stageOfCase.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Summary of Case:</span></td>";
	htmlBody+= "<td class=\"printlabel\">"+f.summaryOfCase.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Assistance Required:</span></td>";
	htmlBody+= "<td class=\"printlabel\">"+f.parametersForWitness.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td class=\"label\"><span class=\"boldtext\">Deadline Details:</span></td>";
	htmlBody+= "<td class=\"printlabel\">"+f.deadlineDetails.value+"</td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td colspan=2><br></td>";
	htmlBody+= "</tr>";
	htmlBody+= "<tr valign=\"top\">";
	htmlBody+= "<td colspan=2 align=center><span class=\"boldtext\"><a href=\"#\" onclick=\"self.print();return false;\">Print</a></span>";
	htmlBody+= "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class=\"boldtext\"><a href=\"#\" onclick=\"self.close();return false;\">Close Window</a></span></td>";
	htmlBody+= "</tr>";
	htmlBody+= "</table>";
	htmlBody+= "</td>";
	htmlBody+= "</tr>";
	htmlBody+= "</table>";
	htmlBody+= "</body>";
	htmlBody+= "</html>";
	
	newWin = window.open("",null,"height=550,width=640,scrollbars=yes,menubar=yes");
	newWin.document.write(htmlBody);
	newWin.focus();
	newWin.document.close();
}