function openWindow(url, name, w, h, features) {
	var w = window.open(url, name, features + ',width=' + w + ',height=' + h);
	w.moveTo( (screen.availWidth / 2) - w, (screen.availHeight / 2) - h);
	w.focus();	
	
}