function write_me(html) {
        document.write(html);  
}

function hl(o)
{
o.style.backgroundColor = "white";
o.style.color = "#009933";
o.style.borderColor = "#009933";
}

function ll(o)
{
o.style.backgroundColor = "#009933";
o.style.color = "white";
o.style.borderColor = "white";
}

function hlA(o)
{
o.style.backgroundColor = "#009933";
o.style.color = "White";
o.style.cursor = "hand";
}
function llA(o)
{
o.style.backgroundColor = "#768DA9";
o.style.color = "White";
o.style.cursor = "default";
}

function go(i)
{
window.location = "index2.aspx?section=projects&id=" + i;
}
function goA(i)
{
window.location = "admin.aspx?section=" + i;
}

function changeSrc(s)
{
	$("mainPic").src = s;
}
function openUpload()
{
window.open("upload.aspx","_blank","width=350,height=150");
}
function openUpload(x)
{
window.open("upload.aspx?id="+ x,"_blank","width=350,height=150");
}
function toggle(t)
{
var c1 = document.getElementById("c1");
var c2 = document.getElementById("c2");
	if(t.name =="c1")
	{
		if(t.checked)
		{
			c2.checked = false;
		}
		else
		{
		c2.checked = true;
		}
	}
	else
	{
		if(t.checked)
		{
		c1.checked = false;
		}
		else
		{
		c1.checked = true;
		}
	}
}
function $() {
	var elements = new Array();
	for (var i = 0; i < arguments.length; i++) {
		var element = arguments[i];
		if (typeof element == 'string')
			element = document.getElementById(element);
		if (arguments.length == 1)
			return element;
		elements.push(element);
	}
	return elements;
}
