function fnCompose(str1,str2,el) {
  el.href = 'mailto:' + str1 + '@' + str2;
}

function openWin(url, name, width, height){
	var win = window.open(url, name, "toolbar=0,menubar=0,width=" + ((width) ? parseInt(width) : 800) + ",height=" + ((height) ? parseInt(height) : 500));
}

function print_r(theObj){ 
   returnStr = '';
   if(theObj.constructor == Array || theObj.constructor == Object){ 
      for(var p in theObj){ 
         if(theObj[p].constructor == Array || theObj[p].constructor == Object){ 
            returnStr += "["+p+"] => "+typeof(theObj)+"\r\n";
            print_r(theObj[p]); 
         } else { 
            returnStr += "["+p+"] => "+theObj[p] + "\r\n"; 
         } 
      } 
   } 
   alert(returnStr);
} 