/* ****************************
** File	    : letters.js
** Descr.   : utilities 
** Author   : Jomar Hønsi
** ************************* */
// Overlib variables
var ol_fgcolor=    '#9999aa';
var ol_bgcolor=    '#000033';
var ol_closecolor= '#aaaacc';
var ol_textcolor=  'black';
var ol_width= 300;
var ol_height= 80;
var ol_captionsize= 1;
var ol_border= 0;
var ol_fixy= 165;
//var ol_fixx= 200;
var szAbout= 'Test';

function showNav(title,text) {
    text= '<h3>' + text + '</h3>';
    dlc(text,'<p>'+title+'</p>');
}

function showAbout() {
    text= '<span class="about">' + szAbout + '</span>';
    dlc(text,'<p>Om reisebreva</p>');
}

function wopen(url,x,y) { // Open window
    var w= x;
    var h= y;
    window.open(url,"title","top=0,left=0,toolbar=no,statusbar=no,width=" + w +",height=" +h);
}
/*
function wopen_fs(url) { // Open window full screen
    var w= screen.width;
    var h= screen.height;
    window.open(url,"title","top=0,left=0,toolbar=no,statusbar=no,width=" + w +",height=" +h);
}
*/


