$(document).ready(function(){
	//form input focus/blur
	$("input[@type=password], input[@type=text], textarea, select").focus(function(){
		$(this).addClass('active');
		val = $(this).attr('def');
		if ($(this).val() == val) $(this).val('');
		$(this).blur(function(){
			$(this).removeClass('active');
			if ($(this).val() == '') $(this).val(val);
		});
	});
});

function popup(mylink, windowname, w, h){
	if (!window.focus) return true;
	var href;
	if (typeof(mylink) == 'string'){
		href = mylink;
	} else {
		href = mylink.href;
	}
	window.open(href, windowname, 'width='+w+',height='+h+',scrollbars=yes');
	return false;
}

