var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000)
year = year + 1900;
// document.write("<left> <font face='Arial, Helvetica, sans-serif'><b><font size='1' color='#006666'>" + lmonth + " ");
// document.write(date + ", " + year + "</center> </font>");
// End -->



var newwindow;
function openit1(sURL){
 newwindow=open(sURL,"newwin","scrollbars=yes,location=no,toolbar=no,directories=no,menubar=no,resizable=no,screenx=350, screeny=250,top=250, left=350, status=no,width=800 height=640"); newwindow.window.focus()
}
function closedep(){
	if (newwindow && newwindow.open && !newwindow.closed) newwindow.close();}


  function openwinsubscr(ImageUrl) {
    window_handle_image =  window.open('subscribe.shtm','newwin',"location=0,menubar=0,resizable=no,height=625,width=550,scrollbars=yes,left=320,screenX=320,top=5,screenY=5");
    window_handle_image.focus();
  }

  function closeTab() {
    window.close();
  }
  






function openit(sURL,ww,hh){
var w = 800, h = 640;

if (document.all) {
   /* the following is only available after onLoad */
   
 
   w = document.body.clientWidth;
   h = document.body.clientHeight;
}
else if (document.layers) {
   w = window.innerWidth;
   h = window.innerHeight;
}

var popW = ww, popH = hh;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
 newwindow=open(sURL,"newwin","scrollbars=no,location=no,toolbar=no,directories=no,menubar=no,resizable=no,width="+popW+ ",height="+popH+",top="+topPos+",left="+leftPos); newwindow.window.focus()
 //newwindow=open(sURL,"popup","width="+ popW + ",height="+popH+",top="+topPos+","left="+leftPos);
 }

//-->
