function openNewWindow (url, title)
{
	newWindow = window.open(url, title, "toolbar=no, resizable=yes, scrollbars=yes, width=650,height=600");
	newWindow.focus();
}
