bannerHeight = 115;
bannerHeightAdjFF = 2;
firefox = 0;

function email(){
	parent.location="mailto:cealyon@aol.com?subject=Query-Website";
}
function initialize(){
	resizePage( );
	window.onresize = resizePage;
}
function mnDemo(){
	window.open("chopetademo.htm","flashdemo",
		"width=300,height=280,left=200,top=200,resizable=1");
}
function partners(){
	window.open("partner.htm","PartnersandAssociates",
		"width=530,height=550,left=110,top=10,resizable=1,scrollbars=yes");
}
function resizePage(){
	clientHeight = document.compatMode=='CSS1Compat'
		? document.documentElement.clientHeight
		: document.body.clientHeight;
	clientWidth = document.compatMode == 'CSS1Compat'
		? document.documentElement.clientWidth
		: document.body.clientWidth;
	newHeight = clientHeight - bannerHeight;
	if( firefox ){
		newHeight -= bannerHeightAdjFF;
	}

	eScroll = document.getElementById( "scroll" );
	if( eScroll ){
		eScroll.style.height = newHeight + "px";
	}

}
function samples(){
	window.open("samples.htm","Samples",
		"width=550,height=500,left=110,top=40,resizable=1,scrollbars=yes");
}
