function notview(val) 
{
	//alert(val);
		document.getElementById('menu1').style.display = 'none';
		document.getElementById('menu1').style.visibility = 'hidden';
		document.getElementById('menu2').style.display = 'none';
		document.getElementById('menu2').style.visibility = 'hidden';
	if(val!=0){	
		document.getElementById('menu'+val).style.display = 'inline';
		document.getElementById('menu'+val).style.visibility = 'visible';
	}
}
var isReady = true;

function doSaveAs(){
	if (document.execCommand){
		if (isReady){
			document.execCommand("SaveAs");
		}
	}
	else{
		alert('Feature available only in Internet Exlorer 4.0 and later.');
	}
}


