/*
*/
//These 2 URL's define the camera server address if working from within the mesh or if externally on the internet.
var imageFile1 = "http://84.92.226.169:8081/cgi-bin/video.jpg";
var imageFile2 = "http://192.168.1.99/cgi-bin/video.jpg";
//This function tests which radio button is pressed, then selects the correct URL for the picture
function show_snapshot()
{
//if(MeshOrInt[0].checked)
// {
document.images.pic.src = imageFile2;
//test
//alert(document.images.pic.src);
}
//else
//if(MeshOrInt[1].checked)
// {
// document.images.pic.src = imageFile2;
//test
//alert(document.images.pic.src);
// }
//}
//specify the function to run using onload event handler
function testalert(str)
{
alert(str);
}
window.onload = show_snapshot;