function popup(url, name, w, h, attrs){
	var win = eval ("window.parent."+name);
	if (win == null) {
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		var props = 'height='+h+',width='+w+',top='+wint+',left='+winl+(attrs ? ','+attrs:'') ;
		win = window.parent.open(url, name, props);
	}   else {
		win.location = url;
	}
	win.focus();
	return false ;
}

function popShow(id,color){
	url = "popup.php?type=show&cid="+id+"&color="+color ;
	popup(url,'LeTarmac','420','550','menubar=no,toolbar=no,resizeable=yes,scrollbars=yes,locationbar=no,statusbar=no,personalbar=no');
}

function popArtist(id,color){
	url = "popup.php?type=artist&cid="+id+"&color="+color ;
	popup(url,'LeTarmac','420','450','menubar=no,toolbar=no,resizeable=yes,scrollbars=yes,locationbar=no,statusbar=no,personalbar=no');
}

function popPress(id,color){
	url = "popup.php?type=press&cid="+id+"&color="+color ;
	popup(url,'LeTarmac','570','500','menubar=no,toolbar=no,resizeable=yes,scrollbars=yes,locationbar=no,statusbar=no,personalbar=no');
}

function popSpecial(id,color){
	url = "popup.php?type=special&cid="+id+"&color="+color ;
	popup(url,'LeTarmac','700','600','menubar=no,toolbar=no,resizeable=yes,scrollbars=yes,locationbar=no,statusbar=no,personalbar=no');
}

function popVideoRenee(id,titre){//attention COLOR ne doit PAS comporter le # !!!
	url = "popup.php?type=reneevid&cid="+id+"&titre="+titre ;
	popup(url,'LeTarmac','400','400','menubar=no,toolbar=no,resizeable=no,scrollbars=no,locationbar=no,statusbar=no,personalbar=no');
}

function popVideoext(id, color, url){
	url = "popup.php?type=videoext&cid="+id+"&color="+color+"&url="+url ; //attention COLOR ne doit PAS comporter le # !!!
	popup(url,'LeTarmac','500','350','menubar=no,toolbar=no,resizeable=yes,scrollbars=yes,locationbar=no,statusbar=no,personalbar=no');
}

function popMP3(id, color){
	url = "popup.php?type=mp3&cid="+id+"&color="+color ; //attention COLOR ne doit PAS comporter le # !!!
	popup(url,'LeTarmac','350','150','menubar=no,toolbar=no,resizeable=yes,scrollbars=yes,locationbar=no,statusbar=no,personalbar=no');
}
