﻿function popQT(class_id){

    if(window.QSlang == undefined) QSlang = "da";

    var newUrl = "http://morningstar.dk/funds/overview.asp";
    newUrl += "?cid=" + class_id;
    newUrl += "&lang=" + QSlang;
    newUrl += "&jq=true";

    var atts = "width=700,";
    atts += "height=700,";
    atts += "left=150,";
    atts += "top=100,";
    atts += "screenX=150,";
    atts += "screenY=100,";
    atts += "toolbar=no,"
    atts += "location=no,";
    atts += "directories=no,";
    atts += "status=no,";
    atts += "menubar=no,"
    atts += "scrollbars=yes,"
    atts += "resizable=yes"

    window.open(newUrl, '_blank', atts);
}

