function popup(url, width, height)
{
	var myURL = '#';
	if(typeof url == 'string') {	myURL = url; }
	else { if(url.href) { myURL = url.href; } }

	var newWindow = window.open(url, 'name', 'width='+width+',height='+height);
	if(window.focus) { newWindow.focus(); }

	return false;
}

