﻿
function lRow(linkID, state, outcolor) {

    if (state == 'over') {
        document.getElementById("link" + linkID).style.backgroundColor = "#ffffcc";
        document.getElementById("link" + linkID).style.cursor = "pointer";
        document.getElementById("link2" + linkID).style.textDecoration = "underline";
        document.getElementById("link2" + linkID).style.color = "Blue";
    }
    else {
        document.getElementById("link" + linkID).style.backgroundColor = outcolor;
        document.getElementById("link" + linkID).style.cursor = "default";
        document.getElementById("link2" + linkID).style.textDecoration = "none";
        document.getElementById("link2" + linkID).style.color = "#000000";
    };

};


function openWin(URL, type) {

    if (type == "pdf")
        URL = "http://www.martinhaemmig.com/downloadable/" + URL;

    window.open(URL, 'Viewer', 'toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,resizable=yes,width=600,height=600');

};