// JavaScript Document
function changePage(pageName) {
	var frameID = 'govtnews';
	var path = "";
	
	if (pageName == 'savali') {
		path = "http://www.govt.ws/popiframe_sl.cfm";
	} else if (pageName == 'press') {
		path = "http://www.govt.ws/popiframe_pr.cfm";
	}
	
	changeFrame(frameID, path);
}

function changeFrame(frameID, newPath) {
	//alert ('coming soon...');
	el = document.getElementById(frameID);
	//alert ('really soon...' + el);
	el.setAttribute("src", newPath);
	//alert ('right now!');
}
