function createWindow(cUrl,cName,cFeatures) {
	var xWin = window.open(cUrl,cName,cFeatures,null);
}

function CreateBookmarkLink(lang) 
{ 	
	if (lang == 'fr')
	{
		title = 'Bobex.be - Acheter et vendre malin';  // window.title   
	}
	else if (lang == 'nl') 
	{
		title = 'Bobex.be - Slimmer kopen en verkopen';  // window.title   
	} 
	else
	{
		title = 'Bobex.be - Buy and sell smarter';  // window.title   
	}
	url = 'http://www.bobex.be/';  // self.location.href
	if (window.sidebar) { // Mozilla Firefox Bookmark		
		window.sidebar.addPanel(title, url,"");	} 
	else if( window.external ) { // IE Favorite		
		window.external.AddFavorite(url, title); }	
	else if(window.opera && window.print) { // Opera Hotlist		
		return true; }
} 

function resizeIframe() {
	i = parent.document.getElementById(window.name);
	iHeight = document.body.scrollHeight;
	i.style.height = iHeight + 5 + "px";
}
