function prMain(edgurl)
{
 if(window.opener.location.href.indexOf('eventthumbs')!=-1)
  {
  window.opener.parent.location.href=edgurl;
  }
  else
  {
  window.opener.location.href=edgurl;
  }
}

function popUp(newURL,style)
{
  var popupwindow;
  popupwindow = window.open(newURL,null,'height=480,width=600,top=50,left=50,status=yes,toolbar=yes,menubar=yes,resizable=yes,location=yes,scrollbars=yes,titlebar=yes');
  popupwindow.focus();
}