var aol = (navigator.userAgent.toUpperCase().indexOf("AOL") > -1) ? true : false;

function openPopUp() {
	if (aol) {
		window.open('flash_index.html', 'popup', 'scrollbars=yes,top=0,left=0,width=725,height=370');
	}
	else {
		window.open('flash_index.html', 'popup', 'channelmode=yes,scrollbars=no,top=0,left=0,width=' + screen.availWidth + ',height=' + screen.availHeight);
	}
}
