var win;

if (self.name == "")
{
    self.name = "main";
}

function popup(url, width, height)
{
    width += 5;
    height += 5;

    var features = 'width=' + width + ',height=' + height + ',left=10,top=10,' +
        'scrollbars=no,resizable=yes,location=no,directories=no,status=no,menubar=no';
    win = open(url, 'popup', features);
    setTimeout('win.focus();', 250);
}

function reset_status_popup(url, width, height)
{
  parent.document.cookie = 'nopopup=false';
  popup(url, width, height);
}

function test_popup(url)
//----------------------
{
	if (document.cookie.indexOf('nopopup=true') == -1)
	{
		 popup(url, 470, 350);
	}
}
function select_photo(id_photo)
//-----------------------------
{
  var url = "../bases/select_photo.php?id="+id_photo;
	var features = "width=550, height=500, left=0,top=0," +
				"scrollbars=yes,resizable=yes,location=no,directories=no,status=yes,menubar=no";	
	win = open(url, 'fenetre_photo', features);
}

function update_photo(id, s)
//--------------------------
{
	s="<img "+s+">";
	opener.idPhoto.innerHTML = s; 
  opener.document.article.pchPhoto.value = id; 
}

function supprime_photo()
//----------------------
{
	idPhoto.innerHTML = ""; 
  document.utilisateur.pchPhoto.value = ""; 	
}

