// JavaScript Document

function popUpCA2(URL, iwidth, iheight) {
	var x  = Math.round((screen.availWidth - 850) / 2);
	var y  = Math.round((screen.availHeight - 700) / 2);
	var fs = 'left=' + x + ',top=' + y + 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + iwidth + ',height=' + iheight;
	var nw = window.open(URL, 'ContentApplet', fs); 
	nw.focus();
}
