function open_window(url,winname,features){
	mywin = window.open(url,winname,features);
	mywin.focus();
	return false;
}
