// JavaScript Document

function CenteredPopup(url,l,h,opts) {
	var top=(screen.height-h)/2;
	var left=(screen.width-l)/2;
	window.open(url,"","top="+top+",left="+left+",width="+l+",height="+h+","+opts);
}

function PopupCallback() {
	CenteredPopup('/popup-callback.php',400,500,'scrollbars=no,resizable=yes');
}

function PopupScreenshot(image,l,h,opts) {
	l=l+20; h=h+20;  // for IE
	var top=(screen.height-h)/2;
	var left=(screen.width-l)/2;
	html = '<html><head><title>copie d écran</title></head><body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0><center><a href="#" onClick="window.close()"><img border="0" alt="Cliquer pour refermer cette fenętre" title="Cliquer pour refermer cette fenętre" src="'+image+'" name="imageTest"></center></body></html>';
	popupImage = window.open('','_blank','top='+top+',left='+left+',width='+l+',height='+h+',toolbar=0,location=0,directories=0,menuBar=0,resizable,scrollbars,'+opts);
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}

function PopupDownload(appname) {
	CenteredPopup('http://raynette.net/download_freeapp/index.php?locale=fr_FR&freeapp_name=' + appname,400,400,'resizable');
}
