function viewReport(reportType, propertyIdentifier) {
   var	win1=window.open("../content/propertyReport?actionField=viewReport&reportType="+reportType+"&propertyIdentifier="+propertyIdentifier, "","toolbar=yes,status,height=600,width=600,resizable=yes,scrollbars=yes");
   win1.focus();
}
function downloadReport(reportType, propertyIdentifier) {
  var win1=window.open("../content/pdfReport?reportType="+reportType+"&propertyIdentifier="+propertyIdentifier, "","status,height=450,width=600,resizable=yes,scrollbars=yes");
  win1.focus();
}
function viewSampleReport(reportType, propertyIdentifier) {
  var win1=window.open("../content/propertyReport?actionField=viewSampleReport&reportType="+reportType+"&propertyIdentifier="+propertyIdentifier, "","toolbar=yes,status,height=600,width=600,resizable=yes,scrollbars=yes");
  win1.focus();
}
function accountLogin() {
  var win1=window.open("../content/login","Login","status,height=600,width=600,resizable=yes,scrollbars=yes");
  win1.focus();
}
