// This code allows javascript interaction between content 
// hosted at Kintera and content hosted at Interland.
// Both domains must include "americaonthemove.org" for this to function properly.

var isLive = true; // set to true when content is within an iframe (live).
document.domain = "americaonthemove.org";
function SetIFRAME(strFrameSize)        { if (isLive && top != self) { parent.SetIFRAME(strFrameSize); } }
function SetIFRAMEHeight(strFrameHeight)
{ 
	if (isLive && top != self)
	{ 
		var iNumber = 0;
	    	iNumber = strFrameHeight.replace('px','');
    	 	if (navigator.appVersion.indexOf("MSIE")==-1) { iNumber = (iNumber*1) + 60; }
		parent.SetIFRAMEHeight(iNumber + 'px');
	}
}