function popitup(url, w, h, s) {
	new_window = window.open(url,'name','scrollbars = ' + s + ', height=' + h + ',width=' + w);
	if (window.focus) {
		new_window.focus()
	}
	return false;
}

$(function(){
    // find all the input elements with title attributes
	$('input[title!=""]').hint();
});

$(function () {
	//alert('go');
	//$('textarea.limited').maxlength({
	//	'feedback' : '.charsLeft'
	//});
});


