// ----------  SCRIPT: Popup-Window and centering on screen - START ----------
function pop_up_page_center(URL,name,w,h,menu,tool,loc,direct,stat,scroll,resize,full,foc)
{	x_pos = (screen.width - w) / 2;
	y_pos = (screen.height - h) / 2;
	
	max_w = screen.width - 10;
	max_h =screen.height - 100;

	if (w != 'max' && w != 'max')
	{	features = 'width='+w+',height='+h+',top='+y_pos+',left='+x_pos+',menubar='+menu+',toolbar='+tool+',location='+loc+',directtories='+direct+',status='+stat+',scrollbars='+scroll+',resizable='+resize+',fullscreen='+full+''
		window.open(URL,name,features)
	}
	else if (w == 'max' && w == 'max')
	{	
	features = 'width='+max_w+',height='+max_h+',top='+y_pos+',left='+x_pos+',menubar='+menu+',toolbar='+tool+',location='+loc+',directtories='+direct+',status='+stat+',scrollbars='+scroll+',resizable='+resize+',fullscreen='+full+''
	window.open(URL,name,features)
	}

	if (foc == 'yes')
	{	focus();
	}

}
// ----------  SCRIPT: Popup-Window and centering on screen - END ----------
