// edit text for Windows-users
var text_win="Right-click here"

// edit text for Macintosh-users
var text_mac="Control-click here"

// edit text for Linux-users
var text_linux="Right-click here"

// edit text for Linux-users
var text_unix="Right-click here"

// edit text for users with unknown OS
var text_unknown="Right-click for free download"

// Do not edit code below this line
var downloadtext=""
var ua = navigator.userAgent.toLowerCase();
if (ua.indexOf("win") != -1) {downloadtext=text_win;} 
else if (ua.indexOf("mac") != -1) {downloadtext=text_mac;} 
else if (ua.indexOf("linux") != -1) {downloadtext=text_linux;} 
else if (ua.indexOf("x11") != -1) {downloadtext=text_unix;} 
else {downloadtext=text_unknown;}
