// open external link in new tab/window
// use rel="external" instead of target="_blank"
function externalLinks() {
  if (!document.getElementsByTagName) return;
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++) {
    var anchor = anchors[i];
    if (anchor.getAttribute("href") &&
        anchor.getAttribute("rel") == "external")
      anchor.target = "_blank";
    }
}
window.onload = externalLinks;


/*----------------------------------------------------------------------------   
    curvey corners
-----------------------------------------------------------------------------*/
$(document).ready( function(){
  $('table.categories p').corners("5px");
  $('ul.menu-list li a').corners("3px");
});

/*----------------------------------------------------------------------------   
    popup window - checkout page
-----------------------------------------------------------------------------*/

function popupwindow(infoUrl){
	window.open(infoUrl, "systems mentors", "height=620,width=500,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
}
