
function	popup(height, width)
{
	pop_ = '<div id="popup" style=" margin-left:'+((width/2)-210-175)+'px; margin-top:'+((height/2)-107-100-175)+'px; width:390px; height:199px; position:absolute; padding-left:15px; padding-top:15px; padding-right:15px; display:none; z-index:99;"></div>';
	pop_ += '<div id="popup_info" style=" margin-left:'+((width/2)-210-175)+'px; margin-top:'+((height/2)-107-100-175)+'px; width:390px; height:199px; position:absolute; padding-left:15px; padding-top:15px; padding-right:15px; display:none; z-index:99;">';
	pop_ += '<table align="center" width="90%"><tr><td id="decors_info_img"></td><td id="decors_info_txt"></td></tr></table></div>';

	document.write('<div id="masque" class="popup_masque" style="height:'+height+'px; width:'+width+'px; position:absolute; z-index:99; margin-left:-175px; margin-top:-175px" onclick="popup_all_close()"></div>');
	document.write(pop_);
}

function	popup_forum(height, width)
{
	pop_ = '<div id="popup" style=" margin-left:'+((width/2)-210)+'px; margin-top:'+((height/2)-107-100)+'px; width:390px; height:199px; position:absolute; padding-left:15px; padding-top:15px; padding-right:15px; display:none; z-index:99;"></div>';
	pop_ += '<div id="popup_info" style=" margin-left:'+((width/2)-210)+'px; margin-top:'+((height/2)-107-100)+'px; width:390px; height:199px; position:absolute; padding-left:15px; padding-top:15px; padding-right:15px; display:none; z-index:99;">';
	pop_ += '<table align="center" width="90%"><tr><td id="decors_info_img"></td><td id="decors_info_txt"></td></tr></table></div>';
	document.write('<div id="masque" class="popup_masque" style="height:'+height+'px; width:'+width+'px; position:absolute; z-index:99; margin-left:-175px; margin-top:-175px" onclick="window.location.href=\'forum.php\'"></div>');
	document.write(pop_);
}

function	popup_go(style, texte)
{
	document.getElementById('popup').style.backgroundImage = 'url(img/design/marron/fenetres/'+style+'.png)';
	document.getElementById('popup').innerHTML = texte;
	document.getElementById('popup').style.display = 'inline';
	document.getElementById('masque').style.display = 'inline';
}

function	popup_info_go(image_src, decors_txt)
{
	document.getElementById('popup_info').style.backgroundImage = 'url(img/design/marron/fenetres/information.png)';
	document.getElementById('decors_info_txt').innerHTML = decors_txt;
	document.getElementById('decors_info_img').innerHTML = '<img name="decors_info_img_img" src="'+image_src+'" />';
	if (document.decors_info_img_img.height > 150) document.decors_info_img_img.height = 150;
	document.getElementById('popup_info').style.display = 'inline';
	document.getElementById('masque').style.display = 'inline';
}


function	popup_pnj(id_pnj, nom, txt, txt_annuler, txt_acheter)
{
	if (document.getElementById('onglet_message') != null)
		document.getElementById('onglet_message').style.display = 'none';
	if (document.getElementById('pnj_marchand_'+id_pnj) != null)
		document.getElementById('pnj_marchand_'+id_pnj).style.display = 'none';
	document.getElementById('popup_pnj').style.backgroundImage = 'url(img/design/marron/fenetres/information.png)';
	document.getElementById('txt').innerHTML = txt;
	document.getElementById('info').innerHTML = nom;
	document.getElementById('reponses').innerHTML = '<a href="" onclick="if (document.getElementById(\'onglet_message\').style.display != \'none\') $(\'#onglet_message\').SlideToggleDown(500); $(\'#pnj_marchand_'+id_pnj+'\').SlideToggleRight(500); return false">'+txt_acheter+'</a> - <a href="" onclick="if (document.getElementById(\'onglet_message\').style.display != \'none\') $(\'#onglet_message\').SlideToggleDown(500);document.getElementById(\'popup_pnj\').style.display = \'none\'; document.getElementById(\'masque\').style.display = \'none\'; return false">'+txt_annuler+'</a> - <a href="#" onclick="$(\'#pnj_missions_'+id_pnj+'\').SlideToggleLeft(500); return false">Vos missions</a>';
	document.getElementById('pnj_patron').style.backgroundImage = 'url(img/avatars/'+nom+'/m/patron.png)';
	document.getElementById('popup_pnj').style.display = 'inline';
	document.getElementById('masque').style.display = 'inline';
}

function	popup_all_close()
{
	document.getElementById('popup').style.display = 'none';
	document.getElementById('popup_info').style.display = 'none';
	document.getElementById('popup_pnj').style.display = 'none';
	document.getElementById('masque').style.display = 'none';
}

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);
} 