function popupPage() {
var windowprops = "height=400,width=400,status=no,menubar=no,location=no,resizable=yes,titlebar=no,scrollbars=no,top=" + (screen.height/2-(400/2)) + ",left=" + (screen.width/2-(400/2));
win2 = window.open("http://forms.aweber.com/form/75/2054302075.html","",windowprops);
      win2.focus();

      unique_track = new Image();
      unique_track.src = "http://forms.aweber.com/form/displays.htm?id=TAysLMwMTAzsrA==";
}
//------------------------------------------------------------------------------
// Function: get
// Purpose: Gets element by ID for Mozilla DOM (including IE5.x - 6.x) as well as IE4.
// Parameters: en - The id number.
// Notes: 
//------------------------------------------------------------------------------
function get( eN ){
	if( document.getElementById ){
		if ( !( eval( 'document.getElementById(\'' + eN + '\')' ))) {
			//alert('Unable to find element with ID: ' + eN);
			return;
			}
	else {
			return(eval( 'document.getElementById(\'' + eN + '\')' ));
		}
	}
	else if( document.all ){
			return( eval( 'document.all.' + eN ) );
	}
}
// updates displayed contents from iframes
function updateDisplay( displayID, displayHTML ) {
	var displayElement = get( displayID );
	if ( !displayElement ) {
		return false;
	}
	else {
		displayElement.innerHTML = displayHTML;
	}
	return true;
}

//openPlayer.. copied from http://www.wyll.com
function openPlayer(URL) {
	var opt1 = "width=472,height=257,top=420,left=520,screenY=420,screenX=520";
	var opt2 = "width=472,height=257,top=250,left=300,screenY=250,screenX=300";
		
	if (screen.width >= 1000) {
		window.open(URL, "Streamaudio_Player", opt1);
		}
	if (screen.width <= 800) {
		window.open(URL, "Streamaudio_Player", opt2);
		}
	}