
function menu_change(form)
{
	if (form.options [form.selectedIndex].value != "")
	window.location.href = form.options [form.selectedIndex].value;
}


function Confirm(link) 
{
	var agree=confirm("Are you sure you wish to delete this file ?");
	if (agree)
		window.location = link;

}


function move_to_form(form,field)
{
	document.forms[form].elements[field].focus();

}

	
function set_default_window_status(text)
{
	window.defaultStatus=text;
}


function NewLink(page,windowname) 
{
	OpenWin = this.open(page, windowname, "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}


function ExternalLink(page,windowname) 
{
	OpenWin = this.open(page, windowname, "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}

function PrintPage() 
{
	window.print();  
}
