function send(sPath)
{ var oWin = window.open(sPath + '/message.tpl',
		'send', 'height=300, width=350'); }

function print()
{ if (opener) return;

	var oSource = document.getElementById('printSource');
	if (!oSource) return;
	
	var sHeader = '<div style="font-family: tahoma, verdana, arial; font-size: 18px; font-weight: bold; padding: 5 5 5 10; border-top: 1px solid black; background: lightgrey">ARTESI Ile-de-France : <a href="http://www.artesi-idf.com">www.artesi-idf.com</a></div>';
	
	var oWin = window.open('', 'print', 'menubar=1, resizable=1, scrollbars=1');
	oWin.document.write('<html><head>' + document.getElementsByTagName('head')[0].innerHTML +
		'</head><body>' + sHeader + oSource.innerHTML + '</body></html>');
}

function echoProcBar(iProc)
{
	var sRet = '<img src="images/spacer.gif" width="1" height="1"><span class="TXT-courrant"><img src="images/barre-sondage.gif" width="' + parseInt(iProc * 2) + '" height="9"> ' + iProc + '% </span>';
	return sRet;
}

function flip(sId)
{
	var o = document.getElementById(sId);
	if (!o) {
		alert("Votre option a été déjà enregistrée.");
		return;
	}

	o.style.display = o.style.display == 'none' ?
		'' : 'none';
}

function popup(sUrl)
{ window.open(sUrl, 'acteur', 'height=440, width=375, resizable=0, scrollbars=1, status=1').focus(); }

function rollPartenaires()
{
	var aAll = document.getElementsByName('tr_partenaire');
	var iCnt = 0; while (aAll[iCnt].style.display == 'none') iCnt++;

	aAll[iCnt].style.display = 'none';
	aAll[++iCnt == aAll.length ? 0 : iCnt].style.display = '';
}

window.onload = function()
{
	if (document.getElementById('tr_partenaire'))
		setInterval('rollPartenaires()', 7000);
};
