
$(document).ready(function(){

	$(':text').focus(function(){
		$(this).addClass('hilight_field');
	});

	$(':text').blur(function(){
		$(this).removeClass('hilight_field');
	});

	$(':password').focus(function(){
		$(this).addClass('hilight_field');
	});

	$(':password').blur(function(){
		$(this).removeClass('hilight_field');
	});

	$(':submit').focus(function(){
		$(this).addClass('hilight_field');
	});

	$(':submit').blur(function(){
		$(this).removeClass('hilight_field');
	});

	$('textarea').focus(function(){
		$(this).addClass('hilight_field');
	});

	$('textarea').blur(function(){
		$(this).removeClass('hilight_field');
	});

	$('#message_dialog').slideDown(200);

});

function popup(a,w,h){
	var width = "";
	var height = "";
	if(w > 0){width = ",width=" + w;}
	if(h > 0){height = ",height=" + h;}
	window.open (a.href, "newWindow", "location=1,status=1,scrollbars=1" + width + height);
}
