function link_go(placeGo){
window.open('http://plasticsurgery.org/public_education/procedures/' + placeGo + '.cfm','','location=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes');
}

function link_go2(placeGo){
window.location= '' + placeGo;
}

function show(id){
if (document.getElementById){
obj = document.getElementById(id);
}

if (obj.style.display == "none"){
obj.style.display = "";
} else {

obj.style.display = "none";
}
}
