function popup( url, width, height )
{			
	popupWindow = window.open( url, url.substring( 0, 1 ), "width=" + width + ",height=" + height );
	
	popupWindow.focus( );
}
