// Popup window code
function openInPopup(url) {
	var name = 'popupWindow';
	var opts = 'left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes';
  if(!!document.all) {
    opts += ',height=380,width=720';
  } else {
    opts += ',height=380,width=700';
  }
  var popupWindow = window.open( url, name, opts );
}

