function zoom( url, width, height, name )
{
	if( name = '' ) for( var i = 0; i < 16; i++ ) name += String.fromCharCode( Math.round( Math.random() * 25 ) + 97 );
	
	var scrollbars = ( screen.height < 900 ) ? 1 : 0;
		
	var hwnd = window.open( '', name, 'height='+height+',width='+width+',scrollbars='+scrollbars+',alwaysraised=1' );						 

	with( hwnd.document )
	{
		write('<html><head><title>.:</title></head><body style="margin:0;padding:0">');
		write('<img src="'+url+'" border="0"></body></html>');
		close();				
	}
	
	hwnd.focus();
}
