//scripts

// highlight item
function setHighlight(obj, flag){
	if (flag){
	obj.className='aShadowH';
	}
	else {
	obj.className='aShadow';
	}
}

function WinPopUp2(URL) {
	winwidth = 800; // width of the new window
	winheight = 500; // height of the new window
	winleft = (screen.width / 2) - (winwidth / 2); // center the window right to left
	wintop = (screen.height / 2) - (winheight / 2); // center the window top to bottom
	var saveConfirm = window.open(URL, "_blank", 'top=' + wintop + ',left=' + winleft + ',height=' + winheight + ',width=' + winwidth + ',status=no, toolbar=no, menubar=no, location=no, resizable=yes, scrollbars=yes');
}
