//Check URL to make sure we are on index.html
var siteAddress = "http://www.audioforensics.com/index.htm";
if(parent.location){
	if(parent.location != siteAddress){
		parent.location = siteAddress;
	}
}
else{
	window.location = siteAddress;
}

function sendEmail(a){
	window.open('mailto:' + a + "@" + "audioforensics.com");
}
