function $(id) {
	return document.getElementById(id);
}
function runCode(obj) {
	var winname = window.open('', "_blank", '');
	winname.document.open('text/html', 'replace');
	winname.opener = null;
	winname.document.write(obj.value);
	winname.document.close();
}
function saveCode(obj) {
	var winname = window.open('', '_blank', 'top=10000');
	winname.document.open('text/html', 'replace');
	winname.document.write(obj.value);
	winname.document.execCommand('saveas','','code.htm');
	winname.close();
}
function dochange(id,zid)   
{   
    var select_Value=document.getElementById(id).value;   
    var text_Value=document.getElementById(zid);   
    text_Value.innerText=select_Value;   
} 
