
/*******************************************************
  
  Function to allow pages to be loaded in to a new
  'pop-up' window. (This is specifically used for 
  the wizard functionality
  

  author: Chris Hedley
  version: 1.0.0.0
  since: 1.0.0.0
 *******************************************************/

function loadPopup(title, product) {
	    var url = location.protocol + "//" + location.host + "/public/"+ title + "Welcome.htm";
    window.open(url, title, "status=1, scrollbars=1, resizable=1, dependent=1, width=800, height=600, left=0, top=0");   
}

function openWindow(title) {
    window.open(title,'NewWindow','width=600, height=400, resizable=yes, scrollbars=yes, toolbar=yes, location=yes, status=yes, menubar=yes');
}