function openLink(href)
{

}

function openLinkNewWindow(href)
{
  if(href != '')
  {
    var clientWidth = screen.width - 20;
    var clientHeight = screen.height - 100;
    window.open(href,'mywindow','width=' + clientWidth + ',height=' + clientHeight + ',resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no')  ;    
  }
}

