
function launch(url)
{
	window.open(url, 'popup', 'width=760,height=550,menubar=no,location=no,scrollbars=yes,resizable=yes'); 
	window.blur(); 
	
	return false; // prevents the calling window from opening following the link
}
