// JavaScript Document
function wfp2_popup (adress,name,width,height) {
	
	var left = (screen.width/2)-(width/2);
	var top = (screen.height/2)-(height/2);
	
	wfp2_window = window.open(adress,name,'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+width+', height='+height+', top='+top+', left='+left+'');
	wfp2_window.focus();
}
