function functionConfirm(stringValue, stringURL){
	if(confirm(stringValue)) location.href = stringURL;
}

function functionLayer(stringValue) {
	var stringStyle = document.getElementById(stringValue).style;
	stringStyle.display = (stringStyle.display == 'none') ? 'block' : 'none';
}
