function highlight(id)
{
	for (i = 0; i < 15; i++)
	{
		var el = document.getElementById("row" + (i + 1));

		if (!el)
			continue;

		if ((i + 1) == id)
		{
			el.className = "selected";
		}
		else
		{
			el.className = "";
		}
	}
}

// POPUP WINDOW
function openpopup(popurl, w, h, sizable) {
	str = 'width='+(w+20)+',height='+(h+30);
	if ( sizable != true ) {
		str = str + ',scrollbars=no,resizable=no,status=no';
	} else {
		str = str + ',scrollbars=yes,resizable=yes,status=yes';
	}
	window.open(popurl,'',str);
}

function addlink()
{
	open("addlinkForm.asp" , "addlink" , "toolbar=no,width=400,height=200,top=210,left=224");
}

function setVisibility(id, visibility) 
{
	document.getElementById(id).style.display = visibility;
}

function popup(target)
{
window.open(target,"popupwin","scrollbars=1,resizable=1,width=700,height=600"); 
}

function openSmall(openSmall)
{
window.open(openSmall,"openSmall","scrollbars=0,resizable=1,fullscreen=yes"); 
}