//this javascript puts the link image with the current page into the page source.


function transcribe(comicid){
	var r = escape(top.location.href);
	var d = escape(document.title);

	//send people towards the new hosting
	var num = 100;
	var i = Math.round(num*Math.random());
	if (i <= 175){
		document.write("<a href=\"http://ohnorobot.goats.com/transcribe.pl?comicid=" + comicid + "&title=" + d + "&url=" + r + "\" target=\"_new" + r + "\"><img src=\"http://ohnorobot.goats.com/verify.pl?comicid=" + comicid + "&url=" + r + "\" border=0></a>");
	}
}
