 

function fixLinks() {
//  makes external links open in a new window (originally from randomwalks.com)
  var objLink, i, j = document.links.length - 1;
  for (i=0; i<=j; i++)   {
    objLink = document.links[i];
    if (objLink.href.indexOf("creativesound") == -1 || /\.pdf$/i.test(objLink.href)) {
      objLink.target = "_blank";
	  objLink.title = "Opens in new tab or window";
    }
  }
}
/*
function mail(recipient) {
	addr = recipient + String.fromCharCode(64) + "mod-soft.com";
	document.write('<a href="mailto:' + addr + '">' + addr + '</a>');
}

function webmaster() {
	document.write('<a href="mailto:support' + String.fromCharCode(64) + 'interprisesoftware.com?subject=Modular site">Send comments</a> about this site.');
}
*/

function PopUp(url,winWidth) {
	var newWindow = window.open(url,"popwin","titlebar,status,resizable,scrollbars,width=" + winWidth + ",height=480");
	newWindow.focus();
}
