
function printDoc( contentId, css ) {
	settings ='height=400,width=600,top=0,left=0,scrollbars=yes,status=false,resizable=yes';
	win = window.open("","print",settings);

	doc=document.getElementById( contentId ).innerHTML;

	wr="";
	wr="<html><head>";
	wr+="<link rel='stylesheet' type='text/css' href='"+css+"'/>";
	wr+="</head>";
	wr+="<body style='padding: 10px;'>";
	wr+="<base href='http://web2.udg.edu/segsal/'>"+doc;
	wr+="</body></html>";

	win.document.open("text/html", "replace");
	win.document.write( wr );
	win.document.close();

	win.print();
	}

