//******************************************************************
//
//                        亚讯互联数码视觉设计
//
//                      QQ:40333696
//                      电邮：lantsky2005@163.com
//                      网址：http://www.lantsky.com
//
//******************************************************************

function open_win(url,name,width,height,scroll)
{
var Left_size = (screen.width) ? (screen.width-width)/2 : 0;
var Top_size = (screen.height) ? (screen.height-height)/2 : 0;
var open_win=window.open(url,name,'width=' + width + ',height=' + height + ',left=' + Left_size + ',top=' + Top_size + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scroll + ',resizable=no' );
}