// JavaScript Document
function popup(){	
window.open('','popup','toolbar=0, location=0, directories=0, status=0,  resizable=1, scrollbars=1, height=400,width=400');
}
//////////////////////////////////////////////////////popup centrage et redim
function pop(nx,ny) {
	xall = (screen.availWidth / 2);
	yall = (screen.availHeight / 2);
	window.resizeTo(nx,ny);
	self.moveTo(xall - (nx / 2), yall - (ny / 2));
	self.focus();
}

///////////////////////////////////fermer pop ou fenetre
function fermer() { 
	opener=self; 
	self.close(); 
}
