function popup(url, width, height, scroll) {
	if(scroll == undefined) {
		scroll = 1;
	}

	window.open(url,"_popupWindow","status=1,width=" + width + ", height=" + height + ", scrollbars=" + scroll);
}