<!--
function encode(str) {
	var result = "";
	for (i = 0; i < str.length; i++) {
		if (str.charAt(i) == " ") result += "+";
		else result += str.charAt(i);
	}
	return escape(result);
}

function openWindow(url,w,h,iw,ih) {
	var launchurl = 'http://www.1001onlinegames.com/launch.php?iwidth='+iw+'&iheight='+ih+'&url='+encode(url);
	PopWin=window.open(launchurl,'LaunchWindow','toolbar=no,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width='+w+',height='+h+',top=10,left=10')
}
//-->