//window.name = "Main";

function fixLinks() {
//  makes external links open in a new window (originally from randomwalks.com)
  j = document.links.length - 1;
  for (i=0; i<=j; i++)   {
    objLink = document.links[i];
    if (objLink.href.indexOf("creativesound") == -1) {
      objLink.target = "_blank";
    }
  }
}

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) {
	newWindow = window.open(url,"popwin","titlebar,status,resizable,scrollbars,width=" + winWidth + ",height=480");
	newWindow.focus();
}