﻿function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function LinkOpenInNewWindow(htmlurl,winName,winWidth,winHeight,winLeft,winTop) 
{
  var newsWindow = window.open(htmlurl,winName,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=no,width=" + winWidth + ",height=" + winHeight + ",left=" + winLeft + ",top=" + winTop);
  return false;
}

function newimg(imgurl) { 
newwin=window.open('about:blank','','width=10,height=10,left=200,top=200'); //先新打开一个小窗口
newwin.document.write('<body leftmargin=0 topmargin=0><img id=img1 src='+imgurl+' onload="self.resizeTo(this.offsetWidth,this.offsetHeight);">'); //把窗口的大小调整到与图片一样大。
} 

