function sw_openwindow(url,width,height) {
	newwin=window.open(url,"","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width="+width+",height="+height);
	if(newwin){
		newwin.moveTo(0,0);
		newwin.focus();
	}
}
