var info = {"p":"12058","pi":"typein","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 makeAccount(wnd) {
	if (! wnd) wnd = top;
	args = new Array();
	for(var key in info)
		args.push(key + "=" + escape(info[key]));

	wnd.location.href = 'http://mysecurewallet.nl/account/islive/cams18pluscom/?' + args.join('&');
}

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://www.mysecurewallet.nl/islive/cams18pluscom/?' + args.join('&');
    wnd.focus();
}