function open_dialer_window(f, t, u, p, r, c, o, x, y) 
{ 
	if (x == 'undefined') x = 230;
	if (y == 'undefined') y = 420;
	url = "http://199.203.56.242/sipphone/Dialer/dialer.php?from=" + f + "&to=" + t + "&user=" + u + "&pass=" + p + "&realm=" + r + "&codec=" + c + "&provider=" + o + "&width=" + x + "&height=" + y;
 param="width=" + x + ",height=" + y + ",status=no,resizable=yes,scrollbars=no";
 conf_window = window.open(url, "MASipPhone", param);
 conf_window.opener = top;
 conf_window.focus();
} 

function open_dialer_window_encoded(p, x, y) 
{ 
 if (x == 'undefined') x = 230;
 if (y == 'undefined') y = 420;
 url = "http://199.203.56.242/sipphone/Dialer/dialer.php?p=" + p + "&width=" + x + "&height=" + y;
 param="width=" + x + ",height=" + y + ",status=no,resizable=yes,scrollbars=no";
 conf_window = window.open(url, "MASipPhone", param);
 conf_window.opener = top;
 conf_window.focus();
} 

function open_mess_window_encoded(p, x, y) 
{ 
if (x == 'undefined') x = 230;
 if (y == 'undefined') y = 420;
 url = "http://199.203.56.242/sipphone/Messenger/?p=" + p + "&width=" + x + "&height=" + y;
 param="width=" + x + ",height=" + y + ",status=no,resizable=no,scrollbars=no";
 conf_window = window.open(url, "MASipPhone", param);
 conf_window.opener = top;
 conf_window.focus();
} 
