// JavaScript Popup Window
function popup(src, width, height){
	if (!width) { width = '800'; }
	if (!height) { height = '400'; }
	window.open(src,"popup","menubar=no,scrollbars=yes,width="+width+",height="+height+",toolbar=no");
}
