// JavaScript Document
///////////////////////////////////////////////////////////////////////
//                           Thomas Williams                         //
//                    JavaScript Pop-Up Win Function                 //
		                                                     //
function openthewindow(strfilename,strwindowname,stroptions){        //
   	                                                             //
	    window.open (strfilename,strwindowname,stroptions)       //
}                                                                    //
//                                                                   //
//     Use the following format for your html link including the     //
//    (name of the file,a window name,and whatever window options)   //
//                                                                   //
//               <a href ="javascript:openthewindow                  //
//          ('foo.txt','aname','scrollbars,width=300,height=250,     //
//                     resizable=no')">link</a>                      //
//                                                                   //
//             --------------------DONE!--------------------         //
///////////////////////////////////////////////////////////////////////