// JavaScript Document

function newWindow(file, w, h, sb) //file to load in popup, width, height, scrollbars (yes or no)
{ 
	  myWindow = window.open(file, "newWin", "width= "+w+", height="+h+", left=300, top=200, scrollbars="+sb+"")
	  setTimeout("myWindow.scroll(0, 0)", 1000)
	  myWindow.focus()
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}





