/* Written by Rembert Oldenboom, Floating Point, Netherlands, 2007 */
/* Free to copy when these two lines are kept intact               */
function resize() {
    var slideshowcontainer = document.getElementById("slideshowcontainer");
    var slideshow = document.getElementById("slideshow");
    var flash = document.getElementById('myslides');
    var width = slideshow.offsetWidth;
    var height = width * 0.65 - 0.5;
    slideshow.style.height = height + 'px';
    slideshowcontainer.style.height = height + 'px'; 
}