var cstyle = 768;
var toph = 70;
var leftw = 256
  h = screen.height;
  if (h >= 600){ toph = 50;leftw = 200;cstyle = 600; }
  if (h >= 768){ toph = 60;leftw = 256;cstyle = 768; }
  if (h >= 864){ toph = 70;leftw = 288;cstyle = 864; }
  if (h >= 1024){ toph = 80;leftw = 320;cstyle = 1024; }


function SetFrameSize(){
  top.document.getElementById('fset').rows = toph+', *';
}

function changefoto(filename,imgwidth,imgheght){
  document.images['foto'].src = filename;
  document.images['foto'].width = imgwidth;
  document.images['foto'].height = imgheght;
}

function changefotoalbum(){
filename = '';
imgwidth = 0;
imgheght = 0;
navn = main.document.form1.album.value;
if (navn == 'Connection Collection'){ filename = 'image/cd.jpg';}
if (navn == 'A piece of my mind'){ filename = 'image/cd_2.jpg';}

if (filename != ''){ main.document.images['foto'].src = filename; }
}