function setOver(current_object)
{
	var link_array = current_object.getElementsByTagName('a')

    link_array[0].className = link_array[0].className.replace('out', 'over');
    current_object.className = current_object.className.replace('out', 'over');
}

function setOut(current_object)
{
    var link_array = current_object.getElementsByTagName('a')

    link_array[0].className = link_array[0].className.replace('over', 'out');
    current_object.className = current_object.className.replace('over', 'out');
}

function setLink(location_string)
{
	document.location.href = location_string;
}

function openPrintWindow(location_string, width_int, height_int)
{
    window.open(location_string,'Print_Window','width=' + width_int + ',height=' + height_int + ',toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');
}