function popupnews(URL) 
{
	window.open(URL,'',"width=600, heigth=500, screenX=50, screenY=50")
}

function popupstrategie(URL) 
{
	window.open(URL,'',"width=350, heigth=150, screenX=300, screenY=300")
}
function IMGchange(Picname,CPic){
osrc = document[Picname].src
document[Picname].src = CPic;
}
function IMGout(Picname){
document[Picname].src = osrc;
}
function IMGchange2(Picname,CPic){
osrc = document[Picname].src
document[Picname].src = CPic;
}
function IMGout2(Picname){
document[Picname].src = osrc;
}
<!--hide
//start common scripts
//****************************************************************
//Open a topic in a popup. The close code must be in the topic.
//
//Typical usage:
//  onClick="HTMLPopup('p_func.htm')"
//
//Parameters:
// htmlfile = file to display in the popup.
//****************************************************************
var objHTMLPopup = null
function HTMLPopup(htmlfile)
	{
	objHTMLPopup = window.open(htmlfile, "Hpopup", "status=no,scrollbars=yes,width=800,height=600")
	window.event.cancelBubble = true
	window.event.returnValue = false
	}
//****************************************************************
//****************************************************************
function ClosePopup()
	{
	if (objHTMLPopup != null)
		{
		objHTMLPopup.close()
		}
	}
//stop hiding-->

