/* 
  ------------------------------------------------
  PrintSection
  Copyright 2008 4LevelWebs
  www.fourlevel.com
  js
  ------------------------------------------------
*/

function LvLPrintContent(id, css, start, head, foot) { //v1.0
 	var s=unescape(css),h=unescape(head),f=unescape(foot);
	var c=document.getElementById(id),w=window.open('print','',''),x = "";
	x+='<html><head>';x+='<title>Print</title>';if(css){
	x +='<link href="'+s+'" rel="stylesheet" type="text/css" />';}
	x+='</head><body>';x+=h;x+=c.innerHTML;x+=f;x+='</body></html>';
	w.document.writeln(x);w.document.close();if(window.focus){w.focus()};
	if(start=="true"){w.print()};
}
