function openWin( html, w, h ) {
    var x = ((screen.width/2)-(w/2));
    var y = ((screen.height/2)-(h/2));
    var n=open( html, '_blank', 'width='+w+',height='+h+',left='+x+',top='+y+',status=0,menubar=0,toolbar=0,scrollbars=0,resizable=0,location=0,directories=0');
    n.focus();
}
function message(which){
//javascript:window.open('/blog/sysmsg/message.jsp?id='+which, '_blank', 'height=300,width=216')
openWin('/blog/sysmsg/message.jsp?id='+which,216,300);
}
function luckDrawResult(){
openWin('/blog/sysmsg/luckDrawResult.jsp',320,190);
//javascript:window.open('/blog/sysmsg/luckDrawResult.jsp', '_blank', 'height=190,width=320')
}
function openReplyAlert(){
openWin('/blog/sysmsg/message.jsp?code=reply',320,190);
//javascript:window.open('/blog/sysmsg/message.jsp?code=reply','_blank', 'height=190,width=320')
}
function autoGameResult(code){
var w = 500;
var h = 300;
var x = ((screen.width/2)-(w/2));
var y = ((screen.height/2)-(h/2));
javascript:window.open('/blog/sysmsg/gameResult.jsp?code='+code,'_blank', 'left='+x+',top='+y+',width='+w+',height='+h+',status=0,menubar=0,toolbar=0,scrollbars=1,resizable=0,location=0,directories=0')
}
