function submit(form) 
{
	var object = document.getElementById(form);
	document.object.submit();
}

function zoom(url)
{
	var wnd_width = 360;
	var wnd_height = 350;
	
	var posLeft = ((screen.width - wnd_width) / 2);
	var posTop = ((screen.height - wnd_height) / 2);
	
	
	wnd_zoom = window.open(url, "wnd_zoom", "width=" + wnd_width +", height=" + wnd_height + " ,left=" + posLeft + ", top=" + posTop + ", scrollbars=yes, resizable=yes, status=no");
	wnd_zoom.focus();
}


function disp_confirm()
{
	var name=confirm("Press a button")
	if (name==true)
	{
		document.write("You pressed the OK button!")
	}
	else
	{
		document.write("You pressed the Cancel button!")
	}
}
