﻿// JScript 文件
function winopenAll(targeturl){
//newwin=window.open("","","scrollbars");
//if(document.all){
//newwin.moveTo(0,0)//新窗口的坐标
//newwin.resizeTo(screen.width,screen.height)
////此处可设置窗口大小，如(1024, 768)，不设置的话为全屏
//}
//newwin.location=targeturl;
top.location=targeturl;
}


