function autotab(original,destination){
	if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
		destination.focus()
}
function AutoTabById(strOriginal,intMaxLength,strDestination){
	original = document.getElementById(strOriginal);
	destination = document.getElementById(strDestination);
	if (original.value.length==intMaxLength){
		destination.focus();
		destination.select()
	}
}
function isDelete( sName, sURL ){
	if( confirm( 'Do you want to delete this '+sName+'?' ) )
		window.location=sURL;
}
function btnResetBottle_Click(){
	var objForm = document.getElementById('PortalVenueEditForm');
	arrElements= objForm.elements;
	for(var i=0; i<arrElements.length; i++){
		if(arrElements[i].name == "chkBottleshopBranding" )
			arrElements[i].checked = false;
	}
}
