// pop window
var l,t,z;
function popWin(url,n,w,h,o) {
	if (w>screen.availWidth-12) w=screen.availWidth-12;
	if (h>screen.availHeight-48) h=screen.availHeight-48;
	l=(screen.availWidth-w-12)/2;
	t=(screen.availHeight-h-48)/2;
	z=window.open(url,n,'width='+w+',height='+h+',left='+l+',top='+t+','+o);
}



function popup(url,name,t,m,w,h,s) 
{
photo = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar='+m+',scrollbars='+s+',resizable=0,width='+w+',height='+h+'');
}

function high(trindex){
document.getElementById(trindex).style.backgroundColor = '#f4f4f4';
}

function low(trindex){
document.getElementById(trindex).style.backgroundColor = 'ffffff';
}