/**
 * @author Alfred
 */
function initilize(){
	refreshTopBanner();
	adjustFlashHeight();
}
function refreshTopBanner(){
	$("topbannerad").innerHTML='<HTML><IFRAME src="ad_728x90.html" frameborder="0" scrolling="no" width="728" height="90" marginwidth="0" marginheight="0"/></HTML>';
}
function getThisUrl() {
	return window.location.href;
}
function trackAction(obj){
	for (var i in obj) {
		s[i] = obj[i];
	}
	s.server="BTS";
	s.linkInternalFilters="javascript:,subscribe.hearstmags.com,www.mybacktoschoolshopper.com"
	var s_code=s.t();if(s_code)document.write(s_code);
	
}

function adjustFlashHeight(){
	//TODO: need to test on big screen........
	if(document.all){
		h=document.body.clientHeight;
	}else{
		h=window.innerHeight;
	}
	var fHeight=Math.round(h-150);
	if(fHeight>783){
		$("basecontent").style.height=String(fHeight)+"px";
	}else{
		$("basecontent").style.height="783px";
	}
}


