<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<TITLE></TITLE>
<script>
function getMonth()
{
var d=new Date();
var month=d.getMonth() +1;
var s=String(month)
if(s.length<2){
s="0"+s;
}
alert(s);
}
</script></HEAD>
<BODY>
<input type="button" onclick="javascript:getMonth()" value="getMonth">
</BODY>
</HTML>