// new window
function newWindow(link,myWidth,myheight)
{
	window.open(link,"Window","width="+myWidth+",height="+myheight+",resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=yes");
}
function openWindow(link,myWinName,myWidth,myheight)
{
	window.open(link,myWinName,"width="+myWidth+",height="+myheight+",resizable=yes,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=yes");
}
function externalLink(link)
{
	window.open(link);
}

function changeStyle(objectID,CSSProp,newVal) {
	var object = document.getElementById(objectID);
	object.style[CSSProp] = newVal;
}
