function newWindow(mylink,width,height)
{
	if (! window.focus) return true;
	var href;
	if (typeof(mylink) == 'string')
	{
		href=mylink;
	}
	else
	{
		href=mylink.href;
	}
		//alert('width=' + width + ',height=' + height + ',scrollbars=vertical');
		window.open(href, this.title, 'width=' + width + ',height=' + height + ',scrollbars=yes');
	return false;
}