// JavaScript Document
function openWin(url) 
{	
	var width = 400;
	var height = 386;
	var w = window.open(url, 'new', 'width='+width+',height='+height+'');
	center_window(w, width, height);
}

function center_window(win,width,height)
{
	if(window.screen)
	{	
		aW = screen.width;
		aH = screen.height;			
		xValue = aW/2 - width/2;	
		yValue = aH/2 - height/2;			
		win.moveTo(xValue,yValue);
		win.focus();
	}	
}