
function popupcenter(url, fen_width, fen_height, nom)
{
var top_pos = (screen.height - fen_height)/2
var left_pos = (screen.width - fen_width)/2
var nouvpopupcenter=window.open(url,nom,"status=yes,resizable=no,scrollbars=no,width="+fen_width+",height="+fen_height+",top="+top_pos+",left="+left_pos);
nouvpopupcenter.focus();
}


function popupscroll(url, fen_width, fen_height, nom)
{
var top_pos = (screen.height - fen_height)/2
var left_pos = (screen.width - fen_width)/2
var nouvpopupscroll=window.open(url,nom,"status=yes,resizable=no,scrollbars=yes,width="+fen_width+",height="+fen_height+",top="+top_pos+",left="+left_pos);
nouvpopupscroll.focus();
}


function popupcoin(url, fen_width, fen_height, nom)
{
var nouvpopupcoin=window.open(url,nom,"status=yes,resizable=no,scrollbars=no,width="+fen_width+",height="+fen_height+",top=50,left=50");
nouvpopupcoin.focus();
}

function popupsoon(msg)
{
fen_w=400
fen_h=250
var top_pos = (screen.height - fen_h)/2
var left_pos = (screen.width - fen_w)/2
var nouvpopupsoon=window.open('http://www.suboptic.biz/coming_soon.php?message='+msg,'soon',"status=yes,resizable=no,scrollbars=no,width="+fen_w+",height="+fen_h+",top="+top_pos+",left="+left_pos);
nouvpopupsoon.focus();
}

function ferme()
{
window.close();
}


function msgalert(amsg) 
{
  alert(msg);
}


function msgstatus(smsg) 
{
  status=smsg;
}