// JavaScript Document
function checkbrowserke(htmlpagina)
{
		//alert();

	if (window.name!='mainFrame' && window.name!='booker_'
			 && !((self.innerHeight == 0) && (self.innerWidth == 0)))
	{
		var userAgent;
		userAgent=navigator.userAgent;
		if (userAgent.indexOf('MSIE') != -1)
		{
			top.location.href(htmlpagina);
		}
		else
		{
			top.location.replace(htmlpagina);
		};
	};
};