// Javascript Document

// Help pop-ups 
function texthelp(textcodes)
{
	window.open('pop_textcodes.php', 'Textkoder', 'width=500, height=400, menubar=no, toolbar=no, location=left, resizable=no, scrollbars=auto, status=no');
}
function help(newshelp)
{
	window.open('pop_newshelp.php', 'Lägga upp nyheter', 'width=500, height=400, menubar=no, toolbar=no, location=left, resizable=no, scrollbars=auto, status=no');
}
function usershelp(usershelp)
{
	window.open('pop_usershelp.php', 'Användarhantering', 'width=500, height=400, menubar=no, toolbar=no, location=left, resizable=no, scrollbars=auto, status=no');
}
function showkata(id)
{
	window.open('java/kata_popup.php?id='+id+'', 'Showing Kata', 'width=580, height=600, menubar=no, toolbar=no, location=left, resizable=no, scrollbars=yes, status=no');
}

function archiveimage(type,id,desc) 
{
    var myImage = new Image();
    properties='height=10,width=10,left=200,top=150,menubar=no,toolbar=no,status=no';
    var imgWindow = window.open('','',properties);
    
    html = '<html>';
    html += '<head>';
    html += '<title>Visa bild</title>';
	html += '<style type="text/css"><!-- body, td {font-family: Verdana; font-size: 11px; } --></style>';
    html += '</head>';
    html += '<body topmargin="0" marginheight="0" leftmargin="0" marginwidth="0">';
    html += '<a href="#"><img border="0" src="../scripts/image.php?type='+type+'&id='+id+'" onLoad="resizeTo(document.bild.width+8,document.bild.height+140);" name="bild" alt="Klicka på bilden för att stänga." title="Klicka på bilden för att stänga." onClick="window.close();"></a>';
   	html += '<table width="100%" height="" cellspacing="0" cellpadding="5"><tr><td style="vertical-align:top;"><center>'+desc+'</center></td></tr><tr><td style="text-align:center;size:10px;vertical-align:top;"><b><font color="#555555">Copyright &copy; TSG International</b></font></td></tr></table>';
   	html += '</body>';
    html += '</html>';
    
    imgWindow.document.write(html);
}