//  Keep track of url loaded in the main page iframe : ppmainframe
function fTrackFrameurl(){
	// Keep trace of what web page is loaded on iframe:
	var wFrameVar = window.parent.document;
	var wFrameVar1 = wFrameVar.getElementById("ohFrameURL");
	if (wFrameVar1 != null) {wFrameVar1.value = document.location.href;}
}
//  Print Active Frame:
function moPrintFrame() {
	window.focus();
	window.print();
}
//  Execute the action of the Browser BACK Button:
function moBack(){
}

// Roll Over the top of the window:
function moWindowTop(){
		window.parent.parent.scroll(0,0);
		window.focus();
}
//  Set Message on Windows Status:
function moWindowStatus(){
	window.status = "IDB Procurement Portal";
}
