function openWnd(url,wnd_name,width,height,scrollbars){         
  var stScrollBar = (scrollbars ? 'yes' : 'no');
  window.open(url,'','width='+width+',height='+height+',status=yes,menubar=no,resizable=yes,scrollbars='+stScrollBar+',left='+String((screen.width-width)/2)+',top='+String((screen.height-height)/2));
}

function cardwin(url) {
  openWnd("http://www.ladynews.info/vcard/index.php?pic_url="+url,"ecard",900,550,true);
}