function printpreview(div) {
	win = window.open("","","scollbars,resizeable,menubar");
	win.document.clear();
	win.document.write
		("<html><head><title>Print Preview - SIPID</title><link rel='stylesheet' type='text/css' href='styleprint.css'></head><body style='text-align: left;margin-left: 20px;margin-right: 20px;margin-top: 20px;' >");
	win.document.write(document.getElementById("date").innerHTML);
	win.document.write(document.getElementById(div).innerHTML);
	win.document.write("</body></html>");
	win.focus();
	//return false;
}
function downloadpdf(div) {
	   ret = document.getElementById('date').innerHTML;
	   ret += document.getElementById(div).innerHTML;
	   location.href="downloadpdf.php?content="+ret;
}
