Text;
		idTourPlayImg.alt = sText;
		if (nType == 0) {idTourPlayImg.src = g_TourPause_normal} else{idTourPlayImg.src = g_TourPause_hover};
			
		idTourPlayImg.STAT = 1;
		resumeClock();
	}
	else if (nSTAT == 1)
	{
		idTourPlayImg.STAT = 0;
		MyTour.pause();
		sText = getText("btnTourPlayCaption");
		idTourPlayImg.title = sText;
		idTourPlayImg.alt = sText;
		if (nType == 0) {idTourPlayImg.src = g_TourPlay_normal;}else{idTourPlayImg.src = g_TourPlay_hover};
		
		idAudioTrack.ClearTimedAction();
		pauseClock();
		clearClockDisplay();
	}
	else if(nSTAT == 2)
	{
		idTourPlayImg.STAT = 4;
		sText = getText("btnTourPlayCaption");
		idTourPlayImg.title = sText;
		idTourPlayImg.alt = sText;
		idTourPlayImg.src = g_TourPlay_normal;
	}
	else if(nSTAT == 4)
	{
		idTourPlayImg.STAT = 1;
		MyTour.start();
	}
}
function CloseAppEVENTonmouseover(oObj)
{
	oObj.src = g_CloseApp_hover;
}
function CloseAppEVENTonmouseout(oObj)
{
	oObj.src = g_CloseApp_normal;
}
function CloseAppEVENTonclick(oObj)
{	
	window.close();
}
function MPLogoEVENTonmouseover(oObj)
{
	oObj.src = g_MPLogo_hover;
}
function MPLogoEVENTonmouseout(oObj)
{
	oObj.src = g_MPLogo_normal;
}
function MPLogoEVENTonclick(oObj)
{
	oObj.src = g_MPLogo_no