//Á¦¾î¹öÆ°
	var time;
	var end_time;
	var gm;
	gm = "00";

function wm_MarkerHit(m)
	{
		var str = document.divwhere.imagesize.value;

		gm = m2m_wm.GetMarkerName(m);
		document.eBookMain.location.href='ebook/MCSE/2151A_M9_01.asp?imagesfile=' + gm + '&img=' + str;
	}

function pre()
	{
		var str = document.divwhere.imagesize.value;

		cm_num=m2m_wm.CurrentMarker; 
		pre_maker=cm_num-1;

		if (pre_maker == 0)
		{
			alert("Ã¹¹øÂ° ÆäÀÌÁöÀÔ´Ï´Ù");
			pre_maker=1;
		}
		
		pre_maker_name=m2m_wm.GetMarkerName(pre_maker);	
		document.eBookMain.location.href='ebook/MCSE/2151A_M9_01.asp?imagesfile=' + pre_maker_name + '&img=' + str;
		m2m_wm.CurrentMarker = pre_maker;
	}

function next()
	{
		var str = document.divwhere.imagesize.value;

		total_maker=m2m_wm.MarkerCount;
		
		cm_num=m2m_wm.CurrentMarker; 	
		next_maker=cm_num+1;
		
		if (next_maker > total_maker)
		{
			alert("¸¶Áö¸· ÆäÀÌÁöÀÔ´Ï´Ù");
			next_maker=total_maker;
		}

		next_maker_name=m2m_wm.GetMarkerName(next_maker);

		document.eBookMain.location.href='ebook/MCSE/2151A_M9_01.asp?imagesfile=' + next_maker_name + '&img=' + str;
		m2m_wm.CurrentMarker = next_maker;	
	}

function first(n)
	{
		var str = document.divwhere.imagesize.value;

		document.eBookMain.location.href='ebook/MCSE/2151A_M9_01.asp?imagesfile=' + n + '&img=' + str;
		m2m_wm.CurrentMarker = n; 
	}

function last(n)
	{
		var str = document.divwhere.imagesize.value;

		document.eBookMain.location.href='ebook/MCSE/2151A_M9_01.asp?imagesfile=' + n + '&img=' + str;
		m2m_wm.CurrentMarker = n; 
	}

function jump(n)
	{
		m2m_wm.play();
		m2m_wm.CurrentMarker = n;
	}
