
function centerOpen(url, width, height, resize) { // Ouverture d'une popup centrŽe
	var url_reverso = url + "?url_reverso=" + document.location.href
	var left = (window.screen.width/2) - (width / 2 + 10);
	var top = (window.screen.height/2) - (height / 2 + 50);
	var wincenter = window.open(url_reverso,"","width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ",screenX=" + left + ",screenY=" + top + ",toolbar=no,menubar=no,status=yes,scrollbars=yes,resizable=" + resize +",directories=no");
	wincenter.focus();
}

function refreshHead(){
	//Fonction créée pour rafraîchir le bandeau supérieur du frame afin d'actualiser la publicité
	//17.4.2003 - DBo - Fastnet - selon demande Webdo
	window.top.header.location.reload();
	

}

// Ce script permet de reconstituer les cadres
// 08.05.2003 Denis
// 12.06.2003 GT - Fastnet
if (parent.frames.length==0)
{
	tempUrl = parent.location.href;
	tempUrl = tempUrl.replace('http://dev.webdocine.ch/','');
	tempUrl = escape(tempUrl)
	
	parent.location.href = "index.asp?urlMain=" + tempUrl;
}