function OpenWindow(url){
wx = 400;
wy = 500;
x = (screen.width  - wx) / 4 + 200;
y = (screen.height - wy) / 4 + 100;
newWin_t1 = window.open(url,"mini","scrollbars=no,resizable=0,left="+x+",top="+y+",width="+wx+",height="+wy);
newWin_t1.focus();
}

function OpenWindow02(url){
wx = 400;
wy = 530;
x = (screen.width  - wx) / 4 + 200;
y = (screen.height - wy) / 4 + 100;
newWin_t1 = window.open(url,"mini","scrollbars=no,resizable=0,left="+x+",top="+y+",width="+wx+",height="+wy);
newWin_t1.focus();
}

function OpenWindowMobile(url){
wx = 500;
wy = 350;
x = (screen.width  - wx) / 4 + 200;
y = (screen.height - wy) / 4 + 100;
newWin_t1 = window.open(url,"mini","scrollbars=no,resizable=0,left="+x+",top="+y+",width="+wx+",height="+wy);
newWin_t1.focus();
}