


function getCountryInfo(cid, info) {
var query = "";
query += '&cid=' + cid;
query += '&info='+ info;
document.forms['main'].proc.value = 'getCountryInfo';
// alert(query);	// debug
ajaxRequest('getCountryInfo', 'div', 'ajax/proc.php', query, 'phone_code_place', 'phone_code_place', '18');
}


function slimbox_open(url, caption) {
	Slimbox.open(url, caption);
}


window.addEvent('domready', function() { 
	// store title and text
	$$('a.tipz').each(function(element,index) {
	element.store('tip:text', element.get('text'));
	});

	//create the tooltips
	var tipz = new Tips('.tipz',{
	className: 'tipz',
	fixed: true,
	hideDelay: 50,
	showDelay: 50
	});

});

