function printDetails(){

	docPrint = window.open('','docPrintWindow','toolbar=yes,location=yes,scrollbars=yes,width=800,height=600');

	docPrint.document.write("<html><head>");
	docPrint.document.write("<link href=css/print.css rel=stylesheet type=text/css>");
	docPrint.document.write("</head><body onload=window.print()>");
	docPrint.document.write($('#printDetail').html());
	docPrint.document.write("</body></html>");

	docPrint.document.close();

}
