var play=new Image();
play.src="http://scriptum.ru/images/play-button.gif";
var pause=new Image();
pause.src="http://scriptum.ru/images/pause-button.gif";
function pauseApplet(theButt)
{
	if (document.images[theButt].src==play.src)
    document.images[theButt].src=pause.src;
	else document.images[theButt].src=play.src;
	document.miniphoto.pause();
}
function stopApplet(theButt)
{
document.photoscriptumapplet.stop();
}