// JavaScript Document
function PopupPic(sPicURL, width, height, addressUrl) { 
     var popup_win = window.open( "svb.html?"+sPicURL + '?' + width + '?' + height+ '?' + addressUrl, "popup_pic","resizable=1,HEIGHT="+height+",WIDTH="+width);
     popup_win.focus();
}
