function appelerPage(strAction)
{
	//alert(strAction);
	//top.page.location.href = strAction;
	parent.page.location.href = strAction;
}

function afficherImage(strUrl, strNom, wwidth, wheight)
{
	var width = screen.width;
	var height = screen.height;
	var x = (width - wwidth)/2;
	var y = (height - wheight)/2 - 32;

   	//alert("top=" + y + ",left=" + x + ",width=" + wwidth + ",height=" + wheight);
	fenetre = window.open(strUrl, strNom, "top=" + y + ",left=" + x + ",width=" + wwidth + ",height=" + wheight + ",resizable=no");
	fenetre.document.writeln("<html><head><title>");
	fenetre.document.writeln(strUrl);
	fenetre.document.writeln("</title><style>body { font-family: arial; font-weight: normal; font-size: 10pt; background-color: palegreen; color: black; margin-top: 0; margin-left: 0; margin-bottom: 0; margin-right: 0; } </style></head>");
	fenetre.document.writeln("<body><img src='");
	fenetre.document.writeln(strUrl);
	fenetre.document.writeln("' border='0' width='100%' height='100%'>");
	fenetre.document.writeln("</body></html>");
	fenetre.focus();
}

function afficherSite(strUrl, strNom)
{
	fenetre=window.open(strUrl, strNom);
	fenetre.focus();
}

function afficherClip(strUrl, strNom)
{
	fenetre=window.open(strUrl, strNom, "top=50 ,left=50, width=550, height=418 ,resizable=no");
	fenetre.focus();
}
