function showPopUp(url, width, height) { 
  var detWindow="" 
  detWindow=window.open(url, 'Roofmaster', 'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=no,resizable=no, width='+width+', height='+height);
}

function showShingle(shingle, width, height) { 
  var detWindow="" 
  var url="./shingleWindow.php?shingle=" + shingle;
  detWindow=window.open(url, shingle, 'toolbar=no,location=0,directories=no,status=no,menubar=0,scrollbars=no,resizable=no, width='+width+', height='+height);
}

function newWindow(url) {
 window.open (url, "Roofmaster");
}

function newPopUp(url, title, width, height) {
 popupwindow = window.open (url, title, 'toolbar=no, location=0, directories=no, status=no, menubar=0, scrollbars=no, resizable=no, width='+width+', height='+height);
 popupwindow.moveTo(50,200);
}

function newBrowser(url, title) {
 window.open (url, title, 'toolbar=yes, location=1, directories=yes, status=yes, menubar=1, scrollbars=yes, resizable=yes');
}