// <![CDATA[
// $Id: main.js, v 1.0 2008/07/27 23:15:21 A.Shihov[a.shihov@gmail.com] $

/**
  * @file
  * common main function
  */
 
function ajax_image(type){
	var q = new String();
	switch(type){
		case 2:
			q += '<img border="0" style="border: none;" src="/i/ajax-02.gif" alt="Loading..." title="Loading..." />';
		break;
		case 3:
			q += '<img border="0" style="border: none;" src="/i/ajax-03.gif" width="16" height="11" alt="Loading..." title="Loading..." />';
		break;
                default:
			q += '<img border="0" style="border: none;" src="/i/ajax-01.gif" alt="Loading..." title="Loading..." />';
		break;
	}
	return q;
}
 
 // ]]>
