// Protect from opening without frameset
if ((parent.frames.length == 0) && (gup("noframe")!="yes")) {
	var currLoc = window.location.href;
	currLoc = currLoc.substring(currLoc.lastIndexOf('/')+1);
	currLoc = currLoc.substring(0, currLoc.indexOf(".html"));
	window.top.location.replace("index.html?inner="+currLoc)
}

function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}

function buildMailLink(uName, dMain) {
        document.write('<a href="mailto:'+uName+'@'+dMain+'">'+uName+'@'+dMain+'</a>');
}


