function mystart()
{
document.getElementById('content').innerHTML="<iframe width='400' height='100' frameborder='0' scrolling='no' src=''></iframe>";
}
function mystop()
{
document.getElementById('content').innerHTML="";

}
function mylink()
{

document.getElementById('link').innerHTML="<div style='background-color:transparent;'><input style='font-size:18pt;background-color:#FFFFFF;color:red;top:50px;margin-bottom:5px;width:100pt;height:40pt;' type='button' value='&laquo; Stop' onclick='closemylink()'/><iframe  width='1' height='1' frameborder='0' scrolling='no' src='What_Urban_Car_Stereos_Did_to_Me.mp3'></iframe></div>";
document.getElementById('play').style.display='none';
         
         //  self.display.html(
         //   day+"<span>days</span>"+
         //   hrs+"<span>hrs</span>"+
         //   min+"<span>min</span>"+
         //   sec+"<span>sec</span>"
         //   )


}
function closemylink()
{
document.getElementById('link').innerHTML="";
document.getElementById('play').style.display='block';

}
//2009-12-1 00:00:00 GMT+00:00
//getTime() - Number of milliseconds since 1/1/1970 @ 12:00 AM
//getSeconds() - Number of seconds (0-59)
//getMinutes() - Number of minutes (0-59)
//getHours() - Number of hours (0-23)
//getDay() - Day of the week(0-6). 0 = Sunday, ... , 6 = Saturday
//getDate() - Day of the month (0-31)
//getMonth() - Number of month (0-11)
//getFullYear() - The four digit year (1970-9999)

function myTime() {
var currentTime = new Date();
var years = currentTime.getFullYear();
var months = currentTime.getMonth();
var days = currentTime.getDate();
var hours = currentTime.getHours();
var minutes = currentTime.getMinutes();
var seconds = currentTime.getSeconds();
var t = years+"="+months+"-"+days+" "+hours+":"+minutes+":"+seconds;
return t;

}

