// JavaScript Document

var winopts = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=no,height=1200,width=800,copyhistory=0,"

var popwindow = null;

function setEvent() {

     return true;

}

function sumit(filename)
 {
    fileURL=filename;
    if (parseInt(navigator.appVersion) < 4) 
		{
        if (popwindow != null) popwindow.close();
		}  
	    timerID= setTimeout('Opner(fileURL)',100);

}

function Opner(winname)
{
  filename = winname;

  winname = "sumit"

  popwindow = window.open(filename,winname,winopts)

  if( navigator.appVersion.indexOf("(X11") != -1 || navigator.appVersion.indexOf("(Mac") != -1)

       popwindow = window.open(filename,winname,winopts)



  if( navigator.appVersion.indexOf("MSIE") == -1 )

      popwindow.mainWin = this;

      WindowFocus();
}

function WindowFocus(){

  

   if( navigator.appVersion.indexOf("2.") == -1 &&   navigator.appVersion.indexOf("MSIE") == -1 )

       popwindow.focus();



}

// --End Hiding Here -->
