	 function PrintContent(contextCntrId)
		 {
		 
		    var obj = document.getElementById(contextCntrId);
		    var contentText;
		    if(obj != null)
		     {
		        contentText = obj.innerHTML
		     }
		    var newWindow=window.open('', 'Print', 'toolbar=no, menubar=no, resizable=yes, scrollbars=yes, directories=no, status=no, location=no, width=640, height=650');
		    
		    var myContent='<html><head><link rel="stylesheet" href="/css/RolleModelPrint.css" type="text/css"></head><body onLoad="self.print()">'
		              + '<table height="100%" width="100%" border="0"> <tr> <td class="adresse" align="center">'
		              + '<b><font face="Arial" size="1">rollemodeller.dk - tlf. 8618 6470 - e-mail: rollemodel@womensmuseum.dk '
		              + '</font></b></td></tr><tr height="100%" valign="top"><td>'
		              + '<div id="textContent1">' + contentText + '</div></td></tr></table></body></html>';
		     
		    newWindow.document.open();
		    newWindow.document.write(myContent);
		    //newWindow.document.location.href = '#';		    		   
		    newWindow.focus();
            newWindow.document.close();                        
            
		 }
