// eJukebox 2WEB v1
// Copyright 2002-2006, Audiosoft.Net
// ----------------------------------
// This allows you to place the current eJukebox song info and album cover image on your web page.

// When the song changes in eJukebox the following 2 files will be uploaded to your web server folder via FTP:
// 1. ejukebox.js  - javascript include file which is a copy of template.txt with the current date, artist, title and album inserted.
// 2. ejukebox.jpg - album cover image with the dimensions you specify in eJukebox

// To use this on your web page first change the FTP Settings in eJukebox to your web servers.
// Make sure your specify the correct FTP folder path with both leading and trailing slashes. i.e. /www/
// Click "Test" in eJukebox to see if the files get uploaded successfully.

// Then just add the ejukebox.js include file to your web page code like this:
// <script language = "JavaScript" src="http://yoursite/yourfolder/ejukebox.js"></script>                 


//--Do Not Modify--
$EJdate = "5/9/2006 4:23:26 AM";
$EJartist = "Smashing Pumpkins";
$EJtitle = "Disarm";
$EJalbum = "Siamese Dream";
// ----------------
// You can use the above $EJ variables anywhere in your web page code (after the .js include) like this:
// <script>document.write($EJalbum);</script>
// -------------

// Below you can specify the HTML you want inserted at the point where you add the ejukebox.js include file in your page
// This is done by using javascript document.write("");
// You can delete the section below if you wish to use the $EJ variables and <img src="ejukebox.jpg"> directly in your web page code instead.


document.write("<table align=center><tr><td align=center>");
document.write("<font face='arial, helvetica, sans-serif' size='-2'>Updated: 5/9/2006 4:23:26 AM</font><br>");
document.write("<font face='arial, helvetica, sans-serif' size='-1'>Disarm</font><br>");
document.write("<font face='arial, helvetica, sans-serif' size='-1'>Smashing Pumpkins</font><br>");
document.write("<a href='http://www.audiosoft.net' target='_new'>")
document.write("<img src='ejukebox.jpg' hspace=0 vspace=0 border=0></a><br>");
document.write("<font face='arial, helvetica, sans-serif' size='-1'> Siamese Dream </font>");
document.write("</td></tr></table>");
