function openwindow(address,title,properties)
{
	window.open (address,title,properties);
}
function changecolor(id)
{
		document.getElementById(id).className="h1";
}
function colordefault(id)
{
		document.getElementById(id).className="h2";
}