function linksColors()
	{
	document.alinkColor = 'red'
	document.vlinkColor = "#000068"
	document.linkColor = "#000068"
	}

var whichForm = ""

function openFormWindow()	{
	newWindow = window.open(whichForm,"","width="+window.screen.availWidth+",height=520,top=0,left=0")
}

function changeLinkColor(item) {
item.style.color = "red";
}

function unchangeLinkColor(item) {
item.style.color = "#000068";
}
