function doClockV2() {
        now= new Date();

        // time 
        hours= now.getHours();
        minutes= now.getMinutes();
        seconds= now.getSeconds();
        timeStr= "" + hours;
        timeStr+= ((minutes < 10) ? ":0" : ":") + minutes;
        timeStr+= ((seconds < 10) ? ":0" : ":") + seconds;
        //document.clock.time.value = timeStr;

        // date
        date= now.getDate();
        month= now.getMonth()+1;
        year= now.getYear();

        
		dateStr =  month +"/";
		dateStr += ((date < 10) ? "0" : "") + date ;
        dateStr+= "/" + year;
		document.getElementById("spanClockPC").innerHTML = dateStr + " " + timeStr;
        Timer= setTimeout("doClockV2()",1000);
}	
function fncReloadIframeV2() {
	
	var f = document.forms[0];
	var o = document.getElementById('iframeMap');
	if (o) {
		document.getElementById('iframeMap').src = 'veMap_Vic.asp?hwm=' + document.getElementById('hwm').value + '&txtSoundType=' + f.txtSoundType.value + '&intRegion=' + f.intRegion[f.intRegion.selectedIndex].value + '&intTimezone=' + f.intTimeZone[f.intTimeZone.selectedIndex].value + '&dtm='+document.getElementById("spanClockPC").innerHTML;

} else {
		alert('Not Loaded');
	}
	Timer= setTimeout("fncReloadIframeV2()",f.intRefreshRate.value * 60 * 1000);
	
}

//-->
