function popup(url,windowName,width,height) {
	var str="directories=no,location=no,resizable=yes,scrollbars=yes,status=no,toolbar=no,width="+width+",height="+height;
	win = window.open(url, windowName, str);
	win.window.focus();
}
