// set document title
function xinu_setTitle( $title )
{
	document.title = $title ;
}

// popup
function xinu_popUp(mylink, windowname)
{
	if (! window.focus)
		return true;
	var href;
	if (typeof(mylink) == 'string')
		href=mylink;
	else
		href=mylink.href;

	window.open(href, windowname, 'width=1000,height=800,scrollbars=yes');
	return false;
}

