
function delete_item(url) {
	var msg = "Are you sure you want to delete this item?";
   if (confirm(msg)) location.href = url;
}



$(document).ready(function(){
	$("#salon_locator_search_field").focus(function() {
		this.value = '';
		this.style.color = "#6a6a6a";
	});
	$("#salon_locator_search_field").blur(function() {
		if (this.value == '') {
			this.value = 'Enter a zip or address';
			this.style.color = "#cccccc";
		}
	});
});


function loadWin(URL) {
	var load = window.open(URL,'Contact_Joico','scrollbars=yes,menubar=no,height=600,width=600,resizable=yes,toolbar=no,location=no,status=no');
}

