function Button_onMouse( button, img )
{
	button.src = img;
}

function maximizeWindow()
{
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth, screen.availHeight);
}

function openWin(sURL, iWidth, iHeight)
{
	var curAvailWidth = screen.availWidth;
	var curAvailHeight = screen.availHeight; 
	var sFeatures = "";
	
	sFeatures += 'width=' + iWidth;
	sFeatures += ',height=' + iHeight;
	sFeatures += ',top=' + (curAvailHeight-iHeight)/2;
	sFeatures += ',left=' + (curAvailWidth-iWidth)/2;		
	sFeatures += ',scrollbars=0';
	sFeatures += ',center=yes';
	sFeatures += ',resizable=no'; 
	sFeatures += ',status=no';
	sFeatures += ',history=no';
	sFeatures += ',toolbar=no';
	sFeatures += ',menubar=no';
	sFeatures += ',location=no';
			
	var oWindow = window.open('', '_blank', sFeatures);
	var oDocument=oWindow.document;
	if (!oWindow._init)
	{
		oDocument.open();
		var sLabel = '<LABEL Style="FONT-FAMILY: Times New Roman, Arial, Tahoma; FONT-SIZE: 14px; FONT-STYLE: italic; FONT-WEIGHT: bolder; COLOR: #2A426E">Loading...Please Wait...</LABEL>';
		oDocument.write(sLabel);
		oDocument.close();				
		
		oDocument.location.assign(sURL);
	}
	
	return oWindow;
}