function gotowin (url)
{
	var newWindow;
   	newWindow = window.open(url,"showin","width=815,height=600,scrollbars=yes");
		
	if (newWindow.opener == null) newWindow.opener = self;
		newWindow.focus();
}

