function checkConfirm(msg, target){
  if(confirm(msg))
    window.location.href = target;
  else
    return false;
}

function textIn(id, text){
  var daInput = document.getElementById(id);
  if(daInput.value == '')
    daInput.value = text;
  return true;
}

function textOut(id, text){
  var daInput = document.getElementById(id);
  if(daInput.value == text)
    daInput.value = '';
  return true;
}

function bookmarkMe(title, url){
  if(window.sidebar)
    window.sidebar.addPanel(title, url, "");
  else
    window.external.AddFavorite(url, title)
}

////window.resizeTo(screen.width, screen.height);
//window.moveTo(0,0);
//window.resizeTo(window.screen.availWidth,window.screen.availHeight);

////////////////////
//var hdiff;
//window.moveTo(-4,-4);
//window.resizeTo(screen.width,screen.height);
//hdiff=window.screenTop;
//window.moveTo(-6,-hdiff-7);
//window.resizeTo(screen.width+13,screen.height+hdiff+35);

////////////////////
