
// onMouseOver and onMouseOut Events

function onMOverHand(obj) {
	obj.style.cursor='hand';
}
function onMOutHand(obj) {
	obj.style.cursor='default';
}
function onMOverHeadline(obj) {
	obj.style.cursor='hand';
	obj.style.color='blue';
	obj.style.textDecoration='underline';
}
function onMOutHeadline(obj) {
	obj.style.cursor='default';
	obj.style.color='black';
	obj.style.textDecoration='none';
}
function onMOverLink(obj) {
	obj.style.cursor='hand';
	obj.style.textDecoration='underline';
}
function onMOutLink(obj) {
	obj.style.cursor='default';
	obj.style.textDecoration='none';
}
function createDialogWindow(goURL,winName) {
	window.open(goURL,winName,"height=500,width=600,left=1,top=1,directories=no,location=no,resizeable=yes,scrollbars=yes,status=no,toolbar=no");
}
