// Used to open a generic popup window
function OpenWindow(link, winName){
	var intWidth = 610;
	var intHeight = 500;
	var newWindow;
	var screenWidth = screen.width;
	var displayPos = ((screenWidth/2) - (intWidth/2));
	newWindow = window.open( link, winName, "toolbar,width=" + intWidth + ",height=" + intHeight + ",left=" + displayPos + ",scrollbars,resizable");
	newWindow.focus();
}

// Used to open a sizeable popup window
function OpenVariableWindow(width, height, link, winName){
	var intWidth = width;
	var intHeight = height;
	var newWindow;
	var screenWidth = screen.width;
	var displayPos = ((screenWidth/2) - (intWidth/2));
	newWindow = window.open( link, winName, "toolbar,width=" + intWidth + ",height=" + intHeight + ",left=" + displayPos + ",scrollbars,resizable");
	newWindow.focus();
}
