<script>
function Elm(tagName){
return document.createElement(tagName);
} var a  = Elm('a');
alert(a.tagName);
</script>