﻿function OpenNewComingSoonWindow() 
    {
  //ProdID will be retrieved from the hidden field on the main page(when adding a new product, please
   //be sure to set the ID of the HDprodID field to the product id
  var prodID = document.getElementById('HDprodID').value;
  var site = document.location.host
  url = 'http://ws.loudtechinc.com/ComingSoon.aspx?prodID='+prodID+'&siteID='+site;
  window.open(url, "_blank", "height=350, width=500, left=800, top=300");
       
     }



