function mw(k){
	var kds = k.split(',');
	document.write(String.fromCharCode(60,97,32,104,114,101,102,61,34,109,97,105,108,116,111,58));
 	for(i in kds){
 	 	if ( kds [i] == 94) {
 	 		document.write(String.fromCharCode(64)); } else
 	 	{
 			document.write(String.fromCharCode(kds[i]));
 	 	}
 	}
	document.write(String.fromCharCode(34,62));
 	for(i in kds){
 	 	if ( kds [i] == 94) {
 	 		document.write(String.fromCharCode(64)); } else
 	 	{
 			document.write(String.fromCharCode(kds[i]));
 	 	}
 	}
	document.write(String.fromCharCode(60,47,97,62));
}
