// Written by Muhamad Krad

// Xtreme Trim Function - Removes all spaces period.
function xtrim(x) {
  return x.replace(/ /gi,"");
}

// Trim Function - Removes all leading and trailing spaces.
function trim(x) {
  return x.replace(/^\s*(\b.*\b|)\s*$/, "$1");
}

// Valid E-mail Function - Returns true if valid e-mail passed in; false otherwise.
function validEmail(x) {
  return (x.match(/\w+@[\w-]+\.\w+/i) != null)
}

function imageInfo(w, h) {
    myWindow = window.open("/info/", "newWindow", "toolbar=no,width=" + w + ",height=" + h); 
}