function FSOpen(url,name,w,h){
var l=(screen.width-w)/2
var t=(screen.height-h)/2
var w=window.open(url,name,"menubar=no,scrollbars=no,resizable=yes,fullscreen=no,left="+l+",top="+t+",width="+w+",height="+h);

w.focus();
if(navigator.platform.indexOf("Mac")!=-1){
w.moveTo(l,t)
}
return w;
}

function regist(){
FSOpen("http://www.brilliage.jp/mail/registration2.html","regist",600,800)

}
