function CG(obj,bg,fc) {
	var Curr_TR=document.all.tags("tr");
	for(var i=1;i<Curr_TR.length;i++) {
		Curr_TR[i].style.backgroundColor=bg;
		Curr_TR[i].style.color=fc;
	}
	obj.style.backgroundColor="#FF6600";
	obj.style.color="HighLightText";
}

function openWindow( url, windowname ) {
  var popup = window.open( url , windowname, "toolbar=yes,status=yes,scrollbars=yes,menubar=yes,locationbar=yes,top=50,left=70,width=800,height=468,resizable=yes");
  popup.focus();
}

function openLargePopup( url, windowname ) {
	var nWidth = 900;
	var nHeight = 600;
	var nLeft = 0;//(screen.width - nWidth) / 2;
	var nTop = 0;//(screen.height - nHeight) / 2 - 30;
	var popup = window.open( url , windowname, "toolbar=no,status=yes,scrollbars=yes,menubar=no,locationbar=no,top="+nTop+",left="+nLeft+",outerWidth="+nWidth+",outerHeight="+nHeight+",width="+nWidth+",height="+nHeight+",resizable=yes");
	popup.focus();
}

function openMediumPopup( url, windowname ) {
  var popup = window.open( url , windowname, "toolbar=no,status=yes,scrollbars=yes,menubar=no,locationbar=no,top=90,left=170,outerWidth=445,outerHeight=390,width=445,height=390,resizable=yes");
  popup.focus();
}

function openSmallPopup( url, windowname ) {
  var popup = window.open( url , windowname, "toolbar=no,status=yes,scrollbars=yes,menubar=no,locationbar=no,top=90,left=290,outerWidth=220,outerHeight=390,width=220,height=390,resizable=yes");
  popup.focus();
}
