function setFlashHeight(newH){
	var windowHeight = $(window).height();
	if(newH > windowHeight)
	{
		
		$('#flashid').css('height', newH);
	}
	else
	{
		$('#flashid').css('height', windowHeight);
	}
}

function log(string)
{
	try{ console.log(string); }catch(err){}
}
