   

function open_pic( page, description, width, height )
{
	newWindow=window.open( '', '', 'width=' + width + ', height=' + height + 
					', menubar=0, scrollbars=0, locationbar=0, directories=0,' +
                    'resizable=1,statusbar=0,toolbar=0' );
	 newWindow.document.write ('<HTML><HEAD><TITLE>' + description + '</TITLE></HEAD>')
	 newWindow.document.write ('<script language="javascript">function click() { alert( "Disabled" ); } document.onmousedown=click </script>')
	 newWindow.document.write ('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" BGCOLOR=black>')
	 newWindow.document.write ('<IMG SRC=' + page + '>');
	 newWindow.document.write ('</BODY></HTML>');
}

function preLoad() 
{
    var doc = document; 
    
    if( doc.images )
    { 
        if( !doc.newarray ) 
            doc.newarray = new Array();

        var i, pos = doc.newarray.length, images = preLoad.arguments;
        
        for( i = 0; i < images.length; i++ )
        {
            if( images[i].indexOf( "#" ) != 0 )
            {  
                window.status = "Pre-loading " + images[i];
                doc.newarray[pos] = new Image;
                doc.newarray[pos++].src = images[i];
            }
        }

        window.status = "Done.";
    }
}




