function startup(){
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth, screen.availHeight);
}
function mp3play(music){
	window.document.mp3player.SetVariable("myVar",music);
}
function showPicture(pic,info){
    var img = ""+pic;
	var txt = window.document.getElementById('txtTitle');
	txt.value = info;
	window.document.picFrame.src=img;
	var idPic = window.document.getElementById('idPicFrame');
	idPic.style.visibility = "visible";
}
function hidePicture(){
    var idPic=window.document.getElementById('idPicFrame');
	window.document.picFrame.src="";
    idPic.style.visibility="hidden";
}
