var BaseURL = "http://www.wrexham.gov.uk/webcam/";
var DisplayWidth = "640";var DisplayHeight = "480";// Resolution 320x240:
var File = "weathercam.cgi";
var OcxFile = "AxisCamControl.bin#Version=1,0,2,15";
var output = "";
if ((navigator.appName == "Microsoft Internet Explorer")&&(navigator.platform != "MacPPC")&&(navigator.platform != "Mac68k"))
{
	output = "<OBJECT ID=\"CamImage\" WIDTH="
	output += DisplayWidth;
	output += " HEIGHT=";
	output += DisplayHeight;
	output += " CLASSID=CLSID:917623D1-D8E5-11D2-BE8B-00104B06BDE3 ";
	output += "CODEBASE=\"";
	output += BaseURL;
	output += OcxFile;
	output += "\">";
	output += "<PARAM NAME=\"URL\" VALUE=\"";
	output += BaseURL;
	output += File;
	output += "\" ALT=\"Moving Image Stream of Wrexham Weather overlooking Wrexham Town Centre\"> <br /><strong>Axis ActiveX Camera Control<br />";
	output += "The AXIS ActiveX Camera Control, which enables you ";
	output += "to view live image streams in Microsoft Internet";
	output += " Explorer, could not be registered on your computer.";
	output += "<br /><\/OBJECT>";
}
else
{
	output = "<IMG SRC=\"";
	output += BaseURL;
	output += File;
	output += "?dummy=garb\" HEIGHT=\"";
	output += DisplayHeight;
	output += "\" WIDTH=\"";
	output += DisplayWidth;
	output += "\" ALT=\"Moving Image Stream of Wrexham Weather overlooking Wrexham Town Centre\">";
}
document.write(output);
