//function to open a pop up window to show the location details.
function st_popup_location (location_code,location_name,season_code,brochure_code) {
   Popup('/st/sun/viewContentInformation.do?' + location_code + '&' + location_name + '&' + season_code + '&' + brochure_code,600,320,'scrollbars=yes');
}

//opens a pop up/new browser window based on the flag for media items
function popupMediaItem(url,height,width,popupIndicator)
{
   if (popupIndicator=='N')
   {
      winpops=window.open(url,"Media_Type","fullscreen=no,toolbar=yes,status=yes,menubar=no,scrollbars=yes,resizable=no,directories=no,location=yes,width="+width+",height="+height) 
   }else{
         winpops=window.open(url,"Media_Type","width="+width+",height="+height) 
   }
}
