<!-- 

// Load different CSS depending on Screen Resolution

var screen_height = screen.height;
var screen_width = screen.width;
var highres_css = "css/kaniezabdi_highres.css";
var hdtv_css = "css/hdtv.css";
var highres = false;
var hdtv = false;

if (screen_height >= 780)
{
	highres = true;

	document.writeln('<style type="text/css">');
	if (screen_width >= 1610)
	{
		hdtv = true;
		document.writeln('@import url("' + hdtv_css  + '");');
	}
	document.writeln('@import url("' + highres_css  + '");');
	document.writeln('</style>');
}

// End hiding script from old browsers -->

