window.onresize = onResize;

function onResize()
{
var el = document.getElementById('flashcontent');

if (navigator.appName.indexOf("Microsoft")!=-1) 
{
(document.body.offsetWidth < 600) ? el.style.width = 600 + 'px' : el.style.width = document.body.offsetWidth + 'px';
(document.body.offsetHeight < 600) ? el.style.height = 600 + 'px' : el.style.height = document.body.offsetHeight + 'px';

} 
else 
{
(window.innerWidth < 800) ? el.style.width = 800 + 'px' : el.style.width = window.innerWidth + 'px';
(window.innerHeight < 600) ? el.style.height = 600 + 'px' : el.style.height = window.innerHeight + 'px';
}
}


function showVimeoVideo(vimeoID)
{
vimeo_window = window.open("/videoPop.php?vid=" + vimeoID,"Video Player","width=500,height=430,status=true,toolbar=false,scrollbars=true");
}