// JavaScript Document
// Popup Window
function popup(filename, title, width, height, x, y, scrollbars, statusbar, resizable){
	if(window.PopWindow && PopWindow.close) PopWindow.close();
	if(x=='c') x = (screen.width - width) / 2;
	if(y=='c') y = (screen.height - height) / 2;
	
	PopWindow = window.open( filename, title, "status=" + statusbar + ",scrollbars=" + scrollbars + 
		",width=" + width + ",height=" + height + ",left=" + x + ",top=" + y + ",resizable=" + resizable );
		   
	if( window.PopWindow && !PopWindow.opener ) PopWindow.opener = self;
	//NewWindow.focus();
}