// JavaScript Document
chkloading = function( imgsrc )
{
	nw = window.open ( '/files/viewimg.html', "subwin", "menubar=no,resizeable=no,status=no,location=no,scrollbars=no,toolbar=no,dependent,height="+(document.iimg.height+20)+",width="+(document.iimg.width+20)+"");	
	document.nw = nw;
}

crwin = function( imgsrc )
{
	iiimg = new Image( );

	iiimg.src = imgsrc;

	document.iimg = iiimg;
	document.iimgsrc = imgsrc;


	setTimeout("chkloading(\'"+imgsrc+"\')",1000);

}