function open_image(id,area,width,height) {
	if(height > 450) {
		scrollbars = 1;
		width += 20;
	} else {
		scrollbars = 0;
	}
	window.open("/image.php?id="+id+"&area="+area,"popupwindow","resizable=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scrollbars+",copyhistory=0,width="+width+",height="+height);
}

function open_gallery_image(id,area,width,height) {
	if(height > 450) {
		scrollbars = 1;
		width += 20;
	} else {
		scrollbars = 0;
	}
	window.open("/image_gallery.php?id="+id+"&area="+area,"popupwindow","resizable=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scrollbars+",copyhistory=0,width="+width+",height="+height);
}

function open_match_report(id,type) {
	width = 400;
	height = 450;
	scrollbars = 1;
	window.open("/match_report.php?id="+id+"&type="+type,"popupwindow","resizable=no,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scrollbars+",copyhistory=0,width="+width+",height="+height);
}
