$(document).ready(function()
{
});

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------ */

String.prototype.trim	= function()	{ return this.replace(/^\s+|\s+$/g,""); }
String.prototype.ltrim	= function()	{ return this.replace(/^\s+/,"");		}
String.prototype.rtrim	= function()	{ return this.replace(/\s+$/,"");		}

function check_email(email)
{
	email = email.trim();
    email_length = email.length;
	if (email_length < 8) return false;
	else if( /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,6})+$/.test( email )) return true;
	else return false;
}

function fixedEncodeURIComponent(str)
{
	return encodeURIComponent(str).replace(/\*/g, '%2A').replace(/\+/g, '%2B').replace(/’/g, '%27').replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').replace(/\)/g, '%29').replace(/‘/g, '%27');
}
