function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var IE = document.all;	
function PopUp(varFilename, intLeft, intTop, intWidth, intHeight, binScroll) {

     winParams = " toolbar=no"         // Icon bar
               + ",location=no"      // Location bar
               + ",directories=no"   // 
               + ",status=no"       //Status Bar at bottom of window.
               + ",menubar=no"       //Menubar at top of window.
               + ",resizeable=no"    //Allow resizing by dragging. (Yes - Does not work with Netscape or IE)
               + ",scrollbars="+binScroll   //Displays scrollbars is document is larger than window.
               + ",titlebar=no"     //Enable/Disable titlebar resize capability.
               + ",left="+intLeft             //Offset of windows left edge from screen.
               + ",top="+intTop              //Offset of windows top edge from screen.							 
               + ",width="+intWidth    //Standard 640,800/788, 800/788
               + ",height="+intHeight  //Standard 480,600/541, 600/566               
               + ";"
 
		 winURL = "./" + varFilename + "";

	 var popwin;
	popWindow = window.open(winURL,popwin,winParams)
}


var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=325,width=320');
	if (window.focus) {newwindow.focus()}
}
