Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/iws8/html/ilight/mybp/js/
Upload File :
Current File : /var/www/html/mmishra/iws8/html/ilight/mybp/js/mm.js

//flash work
function showImage(object) {
        if (document.getElementById) {
                document.getElementById(object).style.visibility = 'visible';
        } else if (document.layers && document.layers[object]) {
                document.layers[object].visibility = 'visible';
        } else if (document.all) {
                document.all[object].style.visibility = 'visible';
        }
}

function hideImage(object) {
        if (document.getElementById) {
                document.getElementById(object).style.visibility = 'hidden';
        } else if (document.layers && document.layers[object]) {
                document.layers[object].visibility = 'hidden';
        } else if (document.all) {
                document.all[object].style.visibility = 'hidden';
        }
}

//clear text of textbox
function clearText(thefield){
  	if(thefield.defaultValue==thefield.value) {
    		thefield.value="";
    		thefield.style.color="red";
  	}
}

function putText(thefield){
  	if(thefield.value==""){
    		thefield.value=thefield.defaultValue;
		thefield.style.color="black";
	}
}