
function openSmall(sida){
	open(sida , "opensmall" , "toolbar=no,scrollbars=yes,width=450,height=200");
}

function openInfo(sida){
	open(sida , "opensmall" , "toolbar=no,width=420,height=320");
}

function openMedlem(sida){
	open(sida , "opensmall" , "toolbar=no,width=530,height=500");
}

function openUpload(sida){
	open(sida , "opensmall" , "toolbar=no,width=530,height=710");
}

function openFoto(sida){
	open(sida , "opensmall" , "toolbar=no,width=500,height=400");
}

function Bilden(filename) 
{
    var myImage = new Image();
    myImage.src=filename;
    properties='height=10,width=10';
    var imgWindow = window.open('','',properties);
    
    html = '<html>';
    html += '<head>';
    html += '<title>'+filename+'</title>';
    html += '</head>';
    html += '<body topmargin="0" marginheight="0" leftmargin="0" marginwidth="0">';
    html += '<img src="'+myImage.src+'" onLoad="resizeTo(document.bild.width+10,document.bild.height+29);" name="bild">';
    html += '</body>';
    html += '</html>';
    
    imgWindow.document.write(html);
}
