// JavaScript Document

function input_focus(obj){

	obj.style.border = "1px solid #E73C34";

}



function input_blur(obj){

	obj.style.border = "1px solid #7A899F";

}



function button_over(obj){

	obj.style.backgroundColor = "#E73C34";

	obj.style.cursor = "hand"

}



function button_out(obj){

	obj.style.backgroundColor = "#7A899F";

}
