//-------------------------------------------------------------------------------------------
function changepage(strPage)
{
	window.navigate (strPage)
}
//-------------------------------------------------------------------------------------------
function openPopup(strName, iwidth, iheight)
{
var strFeatures='scrollbars=no,width=' + iwidth + ',height=' + iheight + ',toolbar=no,resizable=yes'
window.open (strName, 'Popup', strFeatures) 
}
//-------------------------------------------------------------------------------------------
function openWindow(strName, iwidth, iheight)
{
var strFeatures='left=10,top=10,scrollbars=yes,width=' + iwidth + ',height=' + iheight + ',toolbar=yes,resizable=yes,menubar=yes,addressbar=yes'
window.open (strName,'newpage', strFeatures) 
}
//-------------------------------------------------------------------------------------------
function openResultsWindow(strName, iwidth, iheight)
{
var strFeatures='scrollbars=yes,width=' + iwidth + ',height=' + iheight + ',toolbar=yes,resizable=yes,menubar=no,addressbar=no'
window.open (strName,'results', strFeatures) 
}
//-------------------------------------------------------------------------------------------
function ToggleImage(strImage, strObj)
{

	var theObj,n;
	theObj = eval(strObj);
	theObj.src = strImage
}
//-------------------------------------------------------------------------------------------
function megOpenNewWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-------------------------------------------------------------------------------------------
