// Window Opener
function w_open(url,name,features) {
	w=window.open(url,name,features);
	w.focus();
}