var Conf = {
		url: 'www.vodafonefriends.it',	
		applicationId: 362
}

var Utilities = {
	openChat: function (nick,t_pid, t_nick) {
		window.open("http://" + Conf.url + "/chat121.php?profile_id=" + t_pid + "@" + Conf.applicationId + "&nickname=" + nick + "+-+" + t_nick, "_blank", "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=345,height=462");
	},
	
	openChatRoom: function (room_id, nome_stanza, titolo) { 
		window.open("http://" + Conf.url + "/chatroom.php?room_id=" + room_id + "&nome_stanza="+ nome_stanza + "&titolo="+ titolo, "chat_room", "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=950,height=567");
	},
	
	openChatBadge: function () {
		window.open("http://" + Conf.url + "/download_client.php", "Chat", "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=235,height=200");		
	}
}


function openDownloadClient(){
	if(document.getElementById('agreement').checked == true){
		finestra = window.open('http://' + Conf.url + '/jcs/application/index.html', "chat_room", "toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=240,height=200");
		return false;
	}else{
		
		webkit.staticWindow();
	}
}