<!--
// Function to print page

 function print_me(){
	myWindow = window.open("", "tinyWindow", 'toolbar=0,width=600,height=600,scrollbars=1,left=20,top=20') 
	d = document.getElementById('X');
	str=d.innerHTML;
	myWindow.document.write("<html><head><title>Print Me</title>");
	myWindow.document.write("<LINK REL=STYLESHEET HREF='/common/style.css'>");
	myWindow.document.write("</head><body>");
	myWindow.document.write("<table border=0 cellspacing=0 cellpadding=0 width='100%'>");
	myWindow.document.write("<tr><td align='right'><a href='#' onclick='window.print();window.close()'><img src='/images/icon_print.gif' border=0  width=33 height=29 ></a></td></tr>");
	myWindow.document.write("</table>");
	myWindow.document.write("<div id='P'>");
	myWindow.document.write(str);
	myWindow.document.write("</div>");
	myWindow.document.write("<br><br><table border=0 cellspacing=0 cellpadding=0 width='100%'>");
	//myWindow.document.write("<tr><td align='center'><input type=button name=close value='Close this window' class=button onclick=javascript:window.close()></td></tr>");
	myWindow.document.write("</table>");
    myWindow.document.write("</body></html>");
	myWindow.document.close();
  }
  

  function print_page()
  {
	  d = document.getElementById('P');
	  str=d.innerHTML;
	  window.print(str);
  }

//-->
