
// check to see if we are the top level frame,
// if not, send the user to orphan.html
if (top.location == self.location) {
    passPage = document.URL;
    top.location = 'http://kowaliw.ca/orphan.html?'+ passPage;
}

function writeEmailClass(classStr, lastStr, firstStr) {
    document.write('<a class="'+classStr+'" href="mailto:'+firstStr+'@'+lastStr+'">email</a>');
}


function writeEmail(lastStr, firstStr) {
    document.write('<a href="mailto:'+firstStr+'@'+lastStr+'">'+firstStr+'@'+lastStr+'</a>');
}

