// L if live, A if Archive

var videostate = "A";

// Live Player

var live = "http://www.daileylawyer.com/stream/lsdetroit/lsdetroitlive.html";
var widthlive = "240";
var heightlive = "142";


// Archive Player

var archive = "http://www.daileylawyer.com/stream/lsdetroit/lsdetroitarchive.html";
var widtharchive = "240";
var heightarchive = "142";


// Catch Player

var catchi = "http://www.daileylawyer.com/stream/msed/msedcatch.html";
var heightcatchi = "480";
var widthcatchi = "360";

// Do Not Edit Below

if (videostate=="L"){
document.write("\<iframe src=\"");
document.write(live);
document.write(" \" height=\"");
document.write(heightlive);
document.write("px\" width=\"");
document.write(widthlive);
document.write("px\" scrolling=\"no\" frameborder=\"no\" align=\"center\" >");
document.write("</iframe>");
}
else if (videostate=="A") {
document.write("\<iframe src=\"");
document.write(archive);
document.write(" \" height=\"");
document.write(heightarchive);
document.write("px\" width=\"");
document.write(widtharchive);
document.write("px\" scrolling=\"no\" frameborder=\"no\" align=\"center\" >");
document.write("</iframe>");
}
else{
document.write("\<iframe src=\"");
document.write(catchi);
document.write(" \" height=\"");
document.write(heightcatchi);
document.write("px\" width=\"");
document.write(widthcatchi);
document.write("px\" scrolling=\"no\" frameborder=\"no\" align=\"center\" >");
document.write("</iframe>");
}
