function showHide(id) {
	var e = document.getElementById(id);
		if (e) {
			if (e.style.display == 'none') e.style.display = '';
			else e.style.display = 'none';
		}
}
			

function popup(url)
{
	newwindow=window.open(url,'name','height=305,width=405');
	if (window.focus) {newwindow.focus()}
	return false;
}

function showDukeHousePopup() {
	var url = '/rekomendacija/dukehouse.php';
	//alert(url);
	var winRawData = window.open(url,
	"","width=690,height=363,toolbar=0,status=0,menubar=0,location=0,resizable=0,scrollbars=1");
}