/*
(c) islive.be

From: 
*/

var info = {"p":"10546","pi":"cammeisjes","flash":1};

var config = new Array(
                "left=0",
                "top=0",
                "width=" + screen.availWidth,
                "height=" + screen.availHeight,
                "border=1",
                "scrollbars=1",
                "resizable=1",
                "status=1",
                "toolbar=1",
                "menubar=1",
                "location=1"
            );

function startchat(model_id, wnd) {
	
    model_id = (model_id) ? model_id : '';
    if (! wnd) wnd = top;
    // Suppress possible popups
    if (model_id)
		info['m'] = model_id;
	
	args = new Array();
	for(var key in info)
		args.push(key + "=" + escape(info[key]));
	
    wnd.location.href = 'http://mysecurewallet.nl/islive/?' + args.join('&');
    wnd.focus();
}