String.prototype.trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}

function openUrl(str){
	window.open(str,'newWindow','height=450,width=800,top=100,left=100,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no');
}
