function getMailAddress(username, lowercase) {
	if (lowercase) {
		var postfix = '@' + 'cctv' + 'i' + 'dc' + '.com';
		username = username.toLowerCase();
	} else {
		var postfix = '@' + 'cctv' + 'i' + 'dc' + '.com';
	}
	return (username + postfix);
}
function printMailAddress(username) {
	document.write(getMailAddress(username, false));
}

/*
function document.oncontextmenu()
{
	event.returnValue=false;
}
function document.onselectstart()
{
	event.returnValue=false;
}
function document.onpaste()
{
	event.returnValue=false;
}
function document.oncopy()
{
	event.returnValue=false;
}
function document.oncut()
{
	event.returnValue=false;
}



document.oncontextmenu=function(e){return   false;}
window.onload = function(){
	document.body.onmouseup = function (){document.selection.empty();};
	document.body.oncontextmenu = function () {return false;};
	document.body.onselectstart = function () {return false;};
	document.body.onselect = function () {document.selection.empty()};
}
*/


//·ÀÖ¹±»ÈËframe.
if (top.location != self.location)top.location=self.location; 

