function c_popup(page,nWidth,nHeight) {
	var middle
	middle = "top=" + Math.floor((screen.height-nHeight)/2) + ",left=" + Math.floor((screen.width-nWidth)/2);
	window.open(page,"detailwindow","scrollbars=yes,width="+nWidth+",height="+nHeight+"," + middle);
}