$(function(){ // Hinty
	$("input[title!='']").hint();
});

function setPage(url){ //Redirect js
	window.location.href = url;
	return false;
};

function operatoin_confirm(url, comment)
{
	if(confirm(comment))
	{
		setPage(url);
	}
};

function href_operation_confirm(comment)
{
	if(confirm(comment)) {
		return true;
	}
	else
		return false;
};
