

//*********************************************
//Open New Window - Popup
//*********************************************
var winInfoPop = "";
function popupWindow( height, width, OpenPage, title, resize, scrollbar) 
{ 
	winl            = ( screen.width  - width  ) / 2;
	wint            = ( screen.height - height ) / 2;

	if ( winInfoPop.focus)
	{
		winInfoPop.close();
	}
	    
	winInfoPop = window.open(OpenPage,title,'toolbar=0,location=0,directories=0,resizable=' + resize + ',menubar=0,status=0,scrollbars=' + scrollbar + ',width='+ width +',height='+ height +',top='+ wint +',left=' + winl);
	    
	if ( self.focus ) winInfoPop.focus();    
}
