+
+
+
\ No newline at end of file
diff --git a/standard.js b/standard.js
new file mode 100644
index 0000000..eb5b727
--- /dev/null
+++ b/standard.js
@@ -0,0 +1,38 @@
+function clk(val){
+
+ document.getElementById('calfield').value=document.getElementById('calfield').value+val;
+ }
+ function clk(val){
+ document.getElementById('calfield2').value=document.getElementById('calfield2').value+val; //scientific cal
+ }
+ function clrdisp(){
+ document.getElementById('calfield').value="";
+ }
+
+ function clrdisp(){
+ document.getElementById('calfield2').value=""; //scietific cal
+ }
+
+ function eql(){
+ var text=document.getElementById('calfield').value;
+ var result=eval(text);
+ document.getElementById('calfield').value=result;
+ }
+
+ function eql(){
+ var text=document.getElementById('calfield2').value; //scientific cal
+ var result=eval(text);
+ document.getElementById('calfield2').value=result;
+ }
+
+ function cos() {
+ var text=document.getElementById('calfield').value;
+ var result=Math.cos(text);
+ document.getElementById('calfield').value=result;
+ }
+ function sin() {
+ var text=document.getElementById('calfield').value;
+ var result=Math.sin(text);
+ document.getElementById('calfield').value=result;
+ }
+
\ No newline at end of file