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