function onClickRelatedWebsite(popitUp,url) {
 
  if(popitUp==1)
  {
       var width = 1000;
    var height = 800;
    var left = Math.floor((screen.availWidth - width) / 2);
    var top = Math.floor((screen.availHeight - height) / 2);
    var windowFeatures = "width=" + width + ",height=" + height +
            ",menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes," +
            "left=" + left + ",top=" + top +
            "screenX=" + left + ",screenY=" + top;
    child1 = window.open(url, "subWind", windowFeatures);


  }
}




