function HoverPic(PicName)
{
if (PicName=="IMGStop") { document.IMGStop.src = "images/Styles/Player/FULL2_12.gif";
}
if (PicName=="IMGPause") {
document.IMGPause.src = "images/Styles/Player/FULL2_11.gif";
}
if (PicName=="IMGPlay") {
document.IMGPlay.src = "images/Styles/Player/FULL2_10.gif";
}
if (PicName=="IMGRewind") {
document.IMGRewind.src = "images/Styles/Player/FULL2_09.gif";
}
if (PicName=="IMGForword") {
document.IMGForword.src = "images/Styles/Player/FULL2_13.gif";
}
}
function NormalPic(PicName)
{
if (PicName=="IMGStop") {
document.IMGStop.src = "images/Styles/Player/FULL1_12.gif";
}
if (PicName=="IMGPause") {
document.IMGPause.src = "images/Styles/Player/FULL1_11.gif";
}
if (PicName=="IMGPlay") {
document.IMGPlay.src = "images/Styles/Player/FULL1_10.gif";
}
if (PicName=="IMGRewind") {
document.IMGRewind.src = "images/Styles/Player/FULL1_09.gif";
}
if (PicName=="IMGForword") {
document.IMGForword.src = "images/Styles/Player/FULL1_13.gif";
}
if (PicName=="Changed") {
alert("Change");
}
}
function Upd() {
i=1
currentEntry=document.SmartechMediaPlayer.GetCurrentEntry()
currentEntry2 = currentEntry + 1
document.Spic.src = document.SmartechMediaPlayer.GetMediaParameter(currentEntry,"Picture");
document.getElementById("Label1").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry,"Title");
document.getElementById("Label2").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry,"Artist");
document.getElementById("Label3").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry,"Album");
document.getElementById("Label4").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry,"Year");
document.getElementById("Label5").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry2,"Title");
document.getElementById("Label6").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry2,"Artist");
document.getElementById("Label7").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry2,"Album");
document.getElementById("Label8").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry2,"Year");
document.getElementById("Label10").innerText = document.SmartechMediaPlayer.GetMediaParameter(currentEntry,"Artist");
}
function IMG1_onclick() {
document.SmartechMediaPlayer.Play();
Upd()
}
function IMG2_onclick() {
document.SmartechMediaPlayer.Pause();
Upd()
}
function IMG3_onclick() {
document.SmartechMediaPlayer.stop();
Upd()
}
function IMG4_onclick() {
document.SmartechMediaPlayer.next();
Upd()
}
function IMG5_onclick() {
document.SmartechMediaPlayer.Previous();
Upd()
}
function UpdatePlayList() {
Upd()
window.setTimeout('UpdatePlayList()', 4000);
}
// -->
</script>