////////////////////////////////////////////////////////////
//
// File:		scripts.js
// Purpose:		Javascript library
// Date:		9/30/08
//
////////////////////////////////////////////////////////////

///////////////////////////
//
// POP-UP WINDOWS
//
///////////////////////////

function openWin(url, name, width, height, scroll, menu, tool, location, resize) {

	var LeftPosition = (screen.width)  ? (screen.width-width)/2   : 20;
	var TopPosition  = (screen.height) ? (screen.height-height)/2 : 20;
	
	var imageWin=window.open(url,name,"width="+width+",height="+height+",scrollbars="+scroll+",menubar="+menu+",toolbar="+tool+",location="+location+",status=0,resizable="+resize+",top="+TopPosition+",left="+LeftPosition);
}
