发布时间:2009年04月08日 03时53分25秒
属性:程序Web开发 > Microsoft
访问次数:6475
function openUrl(id)
{
var w=810;
var h=380;
var lPos = (screen.width) ? (screen.width-w)/2 : 0;
var tPos = (screen.height) ? (screen.height-h)/2 : 0;
window.open("picture.html?id="+id,"softdown","height="+h+", width="+w+", left="+lPos+", top="+tPos+", toolbar=0, location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0");
}
212