function AttachImageEvent()
{
	var ct;
	for (ct=0 ; ct<document.images.length ; ++ct) {
		var obj = document.images(ct);
		if ( obj.alt != ""  && obj.src.substr(0,1) != "_"  && obj.id.substr(0,1) != "_" ) {
			obj.style.cursor = "hand";
			document.images(ct).attachEvent( "onclick", GotoCommon );
			document.images(ct).attachEvent( "onmouseover", DoMouseOver );
			document.images(ct).attachEvent( "onmouseout", DoMouseOut );
		}
	}
}

function GotoCommon()
{
	window.parent.frames("index").window.execScript( "ClickSubFolder('" + event.srcElement.alt + "')" );
}
