function NewWin(sURl, sName, sFeatures) {
// To open a new window

		var newBrowser;

		newBrowser = window.open(sURl, sName, sFeatures);
		newBrowser.focus();		
}

function switchOn(imgID,imgFile) {
    if (document.images) { 
        document.images.item(imgID).src = "images/buttons/" + imgFile + ".gif";
	}
}

function switchOff(imgID,imgFile) {
    if (document.images) { 
		document.images.item(imgID).src = "images/buttons/" + imgFile + ".gif";
	}
}
	
function StatusMsg(msgStr) 	
{
// To show the msgStr in the Status Bar

		status = msgStr;
		document.returnValue = true;
}
