﻿var sLeft = (screen.availWidth - 600)/2;
var sTop =  (screen.availHeight - 400)/2;

function CreerFlash(Name,Largeur,Hauteur)
{
    document.write("<object classid='clsid:D27CDB6E-AE6D-11CF-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' border='0' width='" + Largeur + "px' height='" + Hauteur + "px'>");
    document.write("<param name='movie' value='" + Name + "' />");
    document.write("<param name='quality' value='High' />");
    document.write("<param name='wmode' value='transparent' />");
    document.write("<embed src='" + Name + "' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' name='obj1' width='" + Largeur + "' height='" + Hauteur + "' quality='High' wmode='transparent'></embed></object>");
}

function AccesCentreParRegion(Valeur)
{
	if (Valeur != "")
	{
		document.location.href = "/Groupe/Centre.aspx?IdRegion=" + Valeur;
	}
}

function AccesCentreParDpt(Valeur)
{
	if (Valeur != "")
	{
		document.location.href = "/Groupe/Centre.aspx?IdDpt=" + Valeur;
	}
}

function AccesCentreParVille(Valeur)
{
	if (Valeur != "")
	{
		document.location.href = "/Groupe/Centre.aspx?Ville=" + Valeur;
	}
}

function AfficherPhoto(sUrl)
{
	if (sUrl != "")
	{
    window.open(sUrl,"Photo","resizable=yes,width=600,height=400,top=" + sTop + ",left=" + sLeft);
	}
}

function AfficherArticle(sUrl)
{
	if (sUrl != "")
	{
    window.open(sUrl,"Article","resizable=yes,width=width=" + screen.availWidth + ",height=" + screen.availHeight + ",top=0,left=0");
	}
}

