function popUpAS() {
  if( typeof(winAS) == "undefined" || winAS.closed) {
    winAS = window.open("","winAS","width=825,height=600,menubar=0,scrollbars=1,resizable=1,alwaysRaised=yes");
  }
  winAS.focus();
}
function popUpNote() {
  var msg;
 
  if( typeof(winNote) == "undefined" ) {
    winNote = window.open("about:blank","winNote","width=500,height=400,menubar=0,scrollbars=1,resizable=1,alwaysRaised=yes");
  }
  if(winNote) {
    if(winNote.closed) {
        window.open("about:blank","winNote","width=500,height=400,menubar=0,scrollbars=1,resizable=1,alwaysRaised=yes");
    }
    winNote.focus();
  }else{
    alert("Could not create Pop-up Window");
  }
  return true
}

function gotoaws(section,page) {
   var url; 
   popUpAS();
   if(section == "SF") {
      url = 'storefront/' + page;
   }else{
      url = page;
   }
   document.gotoForm.target="winAS"; 
   document.gotoForm.page.value=url; 
   document.gotoForm.submit(); 
}

function chkFraming() {
  if (top.location == document.location) {
     top.location.href = "fs_info.htm";
     alert("Side2 called directly");
   }
}
