// JavaScript Document
function blurInput(obj,val) {
	if (obj.value == '') {
		obj.value=val;
		obj.style.color='#999999';
	}
}
function focusInput(obj,val) {
	if (obj.value == val) {
		obj.value='';
		obj.style.color='#666666'
	}
}
function goto(url) {

	window.location=url;
}
