
function popWindowSize(url, width, height) {
	var properties = "width="+width+",height="+height+",scrollbars=yes,resizable=yes";
	var win = window.open(url, "popped_win", properties);
	if(win) return false;
}
