
function gokce(k,o,g,e,c) {
	g = o.substr(2,1)+c.substr(3,1)+c.substr(0,1)+g.substr(2,1);
	o = o.substr(0,1)+g.substr(1,1);
	k = g.substr(0,1);
	c = e.substr(2,1)+e.substr(1,1)+c.substr(3,1);
	e = g.substr(3,1); g=g.substr(0,3);
	return g+o+k+c+e;
}
urll = gokce('bono','boro','ismarla','elae','hareldin yani');
nokta = String.fromCharCode(46);
com = Chr(99)+Chr(111)+Chr(109);
url = 'http://www.'+urll+nokta+com;
function Chr(i) {
	return String.fromCharCode(i);
}
document.write("<a href='"+url+"' target=_blank>"+urll+nokta+com+"</a>");

