﻿function popup(url,args) {
	newwindow=window.open(url,'name',args);
	if (window.focus) {
		newwindow.focus()
	}
	return false;
}