﻿// JScript File
 function ResetInput_local()
 {
    document.getElementById("MyMaster_DemoPageInput_keywordTextBox").value = "";
    if(document.getElementById("MyMaster_DemoPageOutput_resultImgPanel") != null)
    document.getElementById("MyMaster_DemoPageOutput_resultImgPanel").innerHTML = ""; 
    if(document.getElementById("MyMaster_DemoPageOutput_ErrorLabel") != null)
    document.getElementById("MyMaster_DemoPageOutput_ErrorLabel").innerHTML = ""; 
 }
 

function enterSubmit(src,e)
     {
        if(window.event)
            keyPressed = window.event.keyCode; // IE
        else
            keyPressed = e.which; // Firefox
        if(keyPressed==13)
        { 
            submitForm();            
           return false;
        }
    }
    
function submitForm()
    {
        var obj = document.getElementById('MyMaster_DemoPageInput_goButton');	                  
        obj.click();                 
    }
