function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
<!--Recent Entry Loop-->
var position = 0;
var telop_id;

function start_telop(){
	do_telop(telop_str[position], 0);
	telop_id = setTimeout("next_telop(1)", telop_timeout);
}

function next_telop(mode){
	position++;
	if(position >= telop_str.length){
		position = 0;
	}
	if(mode == 0){
		clearTimeout(telop_id);
	}
	start_telop();
}

function prev_telop(mode){
	position--;
	if(position < 0){
		position = telop_str.length - 1;
	}
	if(mode == 0){
		clearTimeout(telop_id);
	}
	start_telop();
}

function do_telop(s, i){
	if(s.length >= i){
		document.getElementById("telop").innerHTML = s.substring(0, i) + telop_tail;
		setTimeout("do_telop('" + s + "'," + (i + 1) + ")", telop_speed);
	}
	else{
		if(telop_link[position] != ""){
			document.getElementById("telop").innerHTML = "<a href='" + telop_link[position] + "'>" + s + "</a>";
		}
		else{
			document.getElementById("telop").innerHTML = s;
		}
	}
}

<!--Recent Entry Loop-->

//document.write(unescape("%3Cscript src='http://e.popin.cc/rainbowaacffa55-b211-1b4d-045d-ab299d534f0a.js' charset='utf-8' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='http://e.popin.cc/rainbow2095345f-b536-29e5-6f92-f1fb516df48e.js' charset='utf-8' type='text/javascript'%3E%3C/script%3E"));


<!--Preview-->

this.screenshotPreview = function(){	
	/* CONFIG */
		
		xOffset = -30;
		yOffset = -150;
		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result
		
	/* END CONFIG */
	$("a.screenshot").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='screenshot'><img src='"+ this.rel +"' alt='url preview' />"+ c +"</p>");								 
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#screenshot").remove();
    });	
	$("a.screenshot").mousemove(function(e){
		$("#screenshot")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


// starting the script on page load
$(document).ready(function(){
	screenshotPreview();
});
