//<![CDATA[

 

var hdWindow = null;

function popupHD(title,url) {
  if (hdWindow != null && !hdWindow.closed) {
    hdWindow.location.href = url;
    hdWindow.focus(); }
  else {
    hdWindow=window.open(url,title,'width=800,height=600,resizable=1');
  }
}


function popupVertical(title,url) {
  if (hdWindow != null && !hdWindow.closed) {
    hdWindow.location.href = url;
    hdWindow.focus(); }
  else {
    hdWindow=window.open(url,title,'width=600,height=800,resizable=1');
  }
}


function popupHorizontal(title,url) {
  if (hdWindow != null && !hdWindow.closed) {
    hdWindow.location.href = url;
    hdWindow.focus(); }
  else {
    hdWindow=window.open(url,title,'width=800,height=600,resizable=1');
  }
}

function removeHD() {
  if (hdWindow != null) {
    hdWindow.close();
    hdWindow = null;
  }
}

//]]>



 