Jamroom's 11th birthday - 25% off special
Announcements
That's a nice special.
Thanks Brian and the Jamroom Team!
And happy birthday Jamroom

<script>
jQuery(document).ready(function() {
$('#user_email').on("blur",function() {
var inputVal = $(this).val(); // the email input value
var bannedAddress= /aol.com/; // the regex to test
if(bannedAddress.test(inputVal)) {
alert("No AOL Email Addresses");
$(this).val(""); // remove the email from the input
}
});
});
</script>
/**
* jrImage_get_allowed_image_widths()
* @return array Returns array of allowed image sizes
*/
function jrImage_get_allowed_image_widths(){
$_sz = array(
'24' => 24,
'xxsmall' => 24,
'40' => 40,
'xsmall' => 40,
'56' => 56,
'72' => 72,
'small' => 72,
'96' => 96,
'icon96' => 96,
'128' => 128,
'icon' => 128,
'196' => 196,
'medium' => 196,
'256' => 256,
'large' => 256,
'320' => 320,
'larger' => 320,
'384' => 384,
'xlarge' => 384,
'512' => 512,
'xxlarge' => 512,
'800' => 800,
'xxxlarge' => 800,
'1280' => 1280
);
return $_sz;
}