function printPage(strId)
{
        var strWinHTML = "";
	if (!document.getElementById(strId)) {return;}
	if (document.getElementById("contentCellSpecial")) {strWinHTML = document.getElementById("contentCellSpecial").innerHTML;}
	else {strWinHTML = document.getElementById(strId).innerHTML;}
	var winprint=window.open("","Print"); 
	winprint.document.open();
	winprint.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>Print</title><link href="/cms/cms/Plesner/plesner.css" type="text/css" rel="stylesheet">');
	
	winprint.document.write('</head><body style="font-family: verdana; font-size: 12px;" onload="javascript:window.print()"><div style="width: 600px;">'); 
	winprint.document.write(strWinHTML);          
	winprint.document.write('</div></body></html>'); 
	winprint.document.close(); 
}
