﻿// --------------------------------------------------------
// common.js
// 
// Website common functions library
// --------------------------------------------------------

// Stop framing of site by other sites
//if(self != top) top.location.href = location.href;

function swapDivContents(t_id, s_id)
{
	if(!document.getElementById)
	{
		return; // Not Supported
	}
	
	document.getElementById(t_id).innerHTML = document.getElementById(s_id).innerHTML;
    
}