<!--
/**********************************************************\
' Name     : default.js
' Purpose  : Default Javascripts
' Created  : 2007-07-03
' Modified : 2007-09-11
' Comment  :
\**********************************************************/

function OpenWeblisher(edition) {

    // Create url
    var url = 'http://www.webbkampanj.com/nvp/';
    if (edition != '') url += '?p=' + escape(edition);
    
    // Open window
    var name = 'NVP_SOM_PDF';
    var width = screen.availWidth;
    var height = screen.availHeight;
    var obj_win = window.open(url, name, 'width=' + width +',height=' + height + ',status=yes,resizable=yes,top=0,left=0,dependent=yes,alwaysRaised=yes,titlebar=no,menubar=no,scrollbars=yes,toolbar=no,personalbar=no');
    obj_win.focus();
}

//-->
