function getWindowSize(){
	$('#flashSite').get(0).printPosition(getWindowWidth(), getWindowHeight());
}

function getWindowWidth(){
	return window.outerWidth || document.documentElement.clientWidth;
}

function getWindowHeight(){
	return window.outerHeight || document.documentElement.clientHeight;
}

function scrollWindow(yp){
	window.scrollTo(0, yp);
}

function getScrollerY(){
	var scrollTop = window.pageYOffset || document.documentElement.scrollTop || 0; 
	$('#flashSite').get(0).setScrollerY(scrollTop);
}

function toggleOverflow(action){
	$('body').css('overflow', action);
}

function txtStatusBar(str){
	window.status = str;
	document.status = str;	
}

function changeSize(H){
	$('#flashSite').get(0).height = H;
}

function trackUrl (url) {
	pageTracker._trackPageview(url);
}