function GetContentWnd(){ 
	return parent; 
}

function AddFavorite(){	
	window.external.addFavorite( window.location.href, window.document.title );
	return;
}

function OnPrintPage(){
	var oWnd = GetContentWnd();	
	oWnd.focus();
	oWnd.print();
	return true;
}

function OpenBrWindow(theURL,winName,features) { 
	window.open(theURL,winName,features);
}
