window.status = '';

function st(str) {
	window.status = str;
}
function hs() {
	window.status = '';
}
function toggleInp(obj, text, blur_text) {
	if(text.length > 0 && obj.value == text) obj.value = '';
	else if(blur_text.length > 0 && obj.value == text) obj.value = blur_text;
}