// JavaScript Document
function writeFrame(){
document.write('<iframe src="linkexchangeFrame.html" frameborder=0 scrolling=no width=960 height=30></iframe>');
}

 // decodare text
function EOd(pText) {
	  var splitted = pText.split(",");
	  var result = "";
	
	  for (i = 0 ; i < splitted.length ; i++) {
		result += String.fromCharCode(splitted[i]);
	  }
	  return result;
	}
