function showimg(height, width, bild) {
	
if (navigator.userAgent.indexOf('MSIE 7') > 0) {
var nheight = parseInt(height)+35; 
} else {
var nheight = parseInt(height); 
}
myWindow = window.open("", "showimg", 'toolbar=no,alwaysRaised="yes",status="no",menubar="no",location="no",screenX=380,screenY=250,width='+width+',height='+nheight+'')
myWindow.document.write('<body onBlur="self.close()" onClick="self.close()" bgcolor="#a4bfcd"><div align="left" valign="top"><img src='+bild+' style="margin:-8px" width="'+width+'px" height="'+height+'px"></div></body>')
myWindow.document.close()
}
function svara() {
myWindow = window.open("", "svara", 'toolbar=no,alwaysRaised="yes",status="no",menubar="no",location="no",screenX=380,screenY=250,width=350,height=200')
myWindow.document.close()
}
function upload() {
myWindow = window.open("upload.php", "upload", 'toolbar=no,alwaysRaised="yes",status="no",menubar="no",location="no",screenX=380,screenY=250,width=800,height=600')
myWindow.document.close()
}

