function DoMyPostBack(id,mode) {
			var theForm;
			if (window.navigator.appName.toLowerCase().indexOf("netscape")>-1 )
				{
					theForm=document.frames["Form1"];
						if (mode == 0)  {window.document.getElementById("_ctl0_AutoAdFolder__ctl20_AdAlbum1_hidImageIndex").value=id; } 
					/* mode=1 is for view image in see details  mode*/
					if (mode == 1)  {window.document.getElementById("_ctl0_AutoAdFolder__ctl20_AdAlbum11_hidImageIndex").value=id; } 
				}
				else
				{
					theForm=document.Form1;
					/* mode=0 is for view image in preview mode*/
					if (mode == 0)  {window.document.getElementById("_ctl0_AutoAdFolder__ctl20_AdAlbum1_hidImageIndex").value=id; } 
					/* mode=1 is for view image in see details  mode*/
					if (mode == 1)  {window.document.getElementById("_ctl0_AutoAdFolder__ctl20_AdAlbum11_hidImageIndex").value=id; } 
					
				}
				
			
				theForm.submit();
		}
		
	

