//common.js
//Send email to friends
function tellFriend(id) {
  switch(id) {
    case 1:  //news
	window.open("../tellFriend.asp?siteLink=/cs/news/news_index.asp", "_upload", "width=508,height=250");
	break;
    case 2:  //career
        window.open("../tellFriend.asp?siteLink=/cs/career/career.asp", "_upload", "width=508,height=250");
        break;
    default: break;
  }
}

function uploadResume(region) {
	window.open("../uploadResume.asp?region=" + region, "_upload", "width=508,height=250");
}
///:~