/*
 * password 1.0 - Random password generator for jQuery
 *
 * Copyright (c) 2009 jQuery Howto
 *
 * Licensed under the GPL license:
 *   http://www.gnu.org/licenses/gpl.html
 *
 * URL:
 *   http://jquery-howto.blogspot.com
 *
 * Author URL:
 *   http://me.boo.uz
 *
 */
(function(a){a.extend({password:function(f,c){var e=0;var b="";var d;if(f==undefined){var f=8;}if(c==undefined){var c=false;}while(e<f){d=(Math.floor((Math.random()*100))%94)+33;if(!c){if((d>=33)&&(d<=47)){continue;}if((d>=58)&&(d<=64)){continue;}if((d>=91)&&(d<=96)){continue;}if((d>=123)&&(d<=126)){continue;}}e++;b+=String.fromCharCode(d);}return b;}});})(jQuery);