var ns4 = (document.layers)? true:false;   //NS 4
var ie4 = (document.all)? true:false;   //IE 4
var dom = (document.getElementById)? true:false;   //DOM

function print_art() 
{
if (ns4) {titre=document.anchors['titre'].text; }
else if (ie4) {titre=document.all.titre.innerText; }
else if (dom) { titre=document.getElementById('titre').text; }

if (titre=="NO_PRINT") {alert("Sorry !\nThis page can not be printed...") }
else
		{
 		var url=escape(document.location);
 		window.open("../scripts/print_art.php?art="+url+"&amp;titre="+titre,'',
'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,height=700,width=500');
    }
}
