// Send command to camera

var CGI;


function GetCGI() {
    loc  = location.hostname;
    last4char = loc.substring(loc.length,loc.length-4);
    //if (last4char == "info")
       CGI = "http://"+loc+"/cgi-bin/Perl/MoveWebCam.pl"
    //else
       //CGI = "http://"+loc+"/barra-de-potosi/cgi-bin/Perl/MoveWebCam.pl";
}

function CamPTcmd(Cmd) {
//    if (!CGI)
   GetCGI();
	var variables = "?"+Cmd;
	document.getElementById("Hidden-iFrame").src = CGI+variables;
//	alert(CGI+variables);
}