// JavaScript Document

	var width=0;
	var height=0;
	var res = 0;
	
	width = screen.width;
	height = screen.height;	
	
	if(width == 1024 && height == 768)
	{
		document.write('<link rel="stylesheet" type="text/css" href="css/style1024.css" />');
		res = 1;
	}
	if(width == 1280 && height == 1024)
	{
		document.write('<link rel="stylesheet" type="text/css" href="css/style1280.css" />');
		res = 1;
	}
	if(width == 800 && height == 600)
	{
		document.write('<link rel="stylesheet" type="text/css" href="css/style800.css" />');
		res = 1;		
	}
	if(width == 1400 && height == 1050)
	{
		document.write('<link rel="stylesheet" type="text/css" href="css/style1400.css" />');
		res = 1;		
	}
	
	//DEFAULT CSS IF RESOLUTION IS DIFERENT 
	if (res == 0)
	{
		document.write('<link rel="stylesheet" type="text/css" href="css/otherresolution.css" />');
	}

function mausraus(cell)
{
	cell.style.cursor = 'default';
	cell.bgColor = '#FFFFE1';
}
function mausrein(cell)
{
	cell.style.cursor = 'hand';
	cell.bgColor = '#FFFF80';
}
function rne(bid) {
	location.href="<?=$siteurl?>/index.php?bid="+bid;
}
function rnc(aid,bid) {
	location.href="<?=$siteurl?>/index.php?aid="+aid+"&bid="+bid;
}