function GoDoc(loc){
	arystr = Parse(loc,',');
	var newstr = '';
	for (var i=0;i<arystr.length;i++) newstr = newstr + String.fromCharCode(arystr[i]);
	document.location = newstr;
	}
		
function Parse(string,deliminator){
	var Parse = string.split(deliminator);
	return Parse;
	}
	
function GoLin(loc){
	document.location = loc;
	}	

function dsplink(el,url){
	var x=document.getElementById(el);
	x.innerHTML = '&nbsp;<a class="art-m" href="' + url + '">Read More</a>';
	}
	