function showLogoUploadBox(url) 
{
	//pos = my - 380;
	//document.getElementById('updatelogo').style.top = pos + 'px';
	
	//Effect.Appear('updatelogo');
	
//	alert(mx);
	

	//document.getElementById('ContactWebsite').value = url;
	// populate url? 
 
}  



function dostarttime(formobj){



formobj.value = getCurrentDateTime();

}

function getCurrentDateTime() {
var date = new Date();
var hours = date.getHours();
var mins = date.getMinutes();
var secs = date.getSeconds();
if(hours < 10) 
	hours = "0"+hours;

if(mins < 10) 
	mins = "0"+mins;


if(secs < 10) 
	secs = "0"+secs;

return date.getFullYear()+"-"+ (date.getMonth()+1)+"-"+date.getDate() +" "+hours+":"+mins + ":" + secs;

//YYYY-MM-DD HH:MM:SS

}

function doendtime(formobj){

formobj.value = getCurrentDateTime();

}


