

/* AJF 10/26/07 - Prolix
 * 
 */

 function loadimg(ImageName,swidth,sheight)
    {

    if ( swidth === 0 ) {
       swidth = 225;
    }


    if ( sheight === 0 ) {
        sheight = 450;
    }

    /*
    *alert(swidth);
    *alert(sheight);
    */

    myWindow=window.open(ImageName,"ProlixImage","toolbar=0,location=0,directories=0,status=yes,top=200,left=200,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width="+swidth+",height="+sheight+"");

    }
	
	
	


