function winopen(page,w,h)
{
	t = (screen.height-h)/2;
	l = (screen.width-w)/2;
	win = window.open('pop_up/'+page,'win','height='+h+',width='+w+',top='+t+', left='+l+',scrollbars=yes,menubar=no,status=no,resizable=no');
}

function printMe() {
	var opts = 'scrollbars=yes,resizable=yes,menubar=no,status=yes';
	var w = 650;
	var h = 400;
	var pw = window.open('print.html','pwin','width='+w+',height='+h+',top=5,left=5,'+opts);
}
function loadPrint(url) {
	document.body.innerHTML = opener.document.getElementById("printContent").innerHTML;
	document.body.innerHTML += "<div id=\"printInfos\">Page imprimée de l'Intranet Onippam : "+url+"</div>";
	window.print();
}
function sendMe() {
	var opts = 'scrollbars=no,resizable=no,menubar=no,status=no';
	var w = 420;
	var h = 300;
	var t = (screen.height - h)/2;
	var l = (screen.width - w)/2;
	var pw = window.open('send.php','swin','width='+w+',height='+h+',top='+t+',left='+l+','+opts);
}

function pdf()
{
	h = 330;
	w = 500;
	t = (screen.height-h)/2;
	l = (screen.width-w)/2;
	win = window.open('pdf.php','win','height='+h+',width='+w+',top='+t+', left='+l+',scrollbars=no,menubar=no,status=no,resizable=no');
}

function orga()
{
	h = screen.height*.95;
	w = screen.width*.95;
	t = (screen.height-h)/2;
	l = (screen.width-w)/2;
	win = window.open('images/organigramme60.jpg','win','width='+(screen.width*.99)+',height='+(screen.height*.85)+',top=1,left=1,scrollbars=yes,menubar=yes,status=no,resizable=yes');
}