/*Print Functionality*/
var myWindow;
function printVersion() {
     myWindow=window.open('dummyPrint.html', "PopUpWindow",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600' );
	 
}
function PrintContents() {	
	 printedDiv=document.getElementById("wrapper");

	 /* This inserts a Print button onto the print preview page.  We may or may not use this. */
     var printContents="<div class='printPopHead'><a href='#' onclick='window.print()'>Print</a></div>";
     printContents+=printedDiv.innerHTML;
	 printContents+="<br/>";
	 /* Uncomment the line below to display Parent Page URL in the Print Preview Window*/
	 /*printContents+="<div class='pgURL'>"+window.location+"</div>"*/
	 /* This sets the conents of the popup window to the html that was copied from the parent. */
     myWindow.document.body.innerHTML=printContents;
}
/*Print Functionality*/


