function openCopyRight(filename) {
	strWindow=window.open(filename,"", "width=650, height=350, top=50, left=150" );
	strWindow.focus();
}

function qpWindow(lstName) {
	var lstItems = document.getElementById(lstName);
	var itmChoice = lstItems.selectedIndex;
	var txtURL = lstItems.options[itmChoice].value;
	window.location.replace(lstItems.options[itmChoice].value);
}

