﻿// JavaScript Document

//cnetpage = 'https://consultnet.studentconsulting.com/SE/site/';
cnetpage = '';


function CNet(querystring, width, height) {
    if (width == null)
        width = 750;
    if (height == null)
        height = 700;

    viewpage = cnetpage + querystring;

    //PopUpWintendo = window.open("", 'consultnet', 'width = ' + width + ', height = ' + height); 
    PopUpWintendo = window.open(viewpage, 'consultnet', 'scrollbars=yes, width = ' + width + ', height = ' + height);
    PopUpWintendo.focus(); // fokusera på nytt fönster varje gång, även om det redan är öppet när vi skickar något dit.

    //PopUpWintendo.location = eval(pageTracker._link(viewpage));

}

