﻿// JScript File
var hdnResource;
var hdnHasSubmitted;
var hdnOpenLink;

function openResource(link, name) {
   hdnResource.value = name;
   hdnOpenLink.value = link; //just needed on the first load when the form is displayed between the clicking and the opening
   
  if (hdnHasSubmitted.value=="true" ) {
        window.open(link);
  }
}   
        
