
function view(obj)
{
	try
	{
		var theObject = document.getElementById(obj);

		if (theObject.className == "paragraph")
		{
			theObject.className = "paragraph_view";
		}
		else
		{
			theObject.className = "paragraph";
		}
	}
	catch(e)
	{
	}
}
var newwindow;
function openWindow(url)
{
	newwindow=window.open(url,'name','height=600,width=700,toolbar=no,menubar=no,location=no,status=no');
	if (window.focus) {newwindow.focus()}
}
