
<!--
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
function visit_right_DoFSCommand(command, args) {
	var visit_rightObj = isInternetExplorer ? document.all.visit_right : document.visit_right;
	//
	if (command == "PresBild") {
		var winleft = (screen.width - 300) / 2;
		var winUp = (screen.height - 100) / 2;
		var popNamn = args+Math.random()
		var new_win = window.open('download.asp?ID=' + args,'SakiDownload','left='+winleft+',top='+winUp+',width=300,height=100,resizable=no;scrolling=0')	
		if (window.focus) {new_win.focus()}

	}
	//
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub visit_right_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call visit_right_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}
//-->

