function showWindow(url, w, h)
{
	if(w == 0) {
		w = screen.availWidth;
	}
	if(h == 0) {
		h = screen.availHeight;
	} else {
		h = h + 40;
	}
	
	hWnd = window.open("", "Popup", 'toolbar=0,left=0,top=0,location=0,directories=0,status=0,menubar=0,resizable=1,dependent=1,hotkeys=0,scrollbars=1,titlebar=0,z-lock=1,width=' + w + ',height=' + h + ',left=' + (screen.availWidth - w) / 2 + ',top=' + (screen.availHeight - h) / 2);
	hWnd.resizeTo(w, h);
	hWnd.focus();
	hWnd.location.href=""+url;
}

function markButton(sdr, dest_name) {
  if (sdr != null) {
    sdr.src = dest_name;
    return true;
  }
  return false;
}