// JavaScript Document


////###################POP UP
function popupcentree(page,largeur,hauteur,options)
{
var top=(screen.height-hauteur)/2;
var left=(screen.width-largeur)/2;
window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

/////########################PLAYER
function open_album(id){ //v3.0


	//player(selObj.options[selObj.selectedIndex].value,400,350);
	popupcentree("pop_album.php?album_id="+id,400,350,"menubar=no,scrollbars=yes,statusbar=no");


//  if (restore) selObj.selectedIndex=0;
}