// JavaScript Document

function popUp(url){
	newwindow = window.open(url, 'name', 'height=500, width=600, resizable=yes, scrollbars=yes');

	if (window.focus) {
		newwindow.focus()
	}
	
}

function popUp2(url){
	newwindow = window.open(url, 'name2', 'scrollbars=yes, height=500, width=600');

	if (window.focus) {
		newwindow.focus()
	}
	
}

function popUpHipotekarniIzracun(url) {
	newwindow = window.open(url, 'hipotekarniIzracun', 'scrollbars=yes, height=400, width=300');

	if (window.focus) {
		newwindow.focus()
	}
}

function popUpOglas(url, width, height) {
	newwindow = window.open(url, "podrobnosti", "height="+height+",width="+width+", scrollbars=yes, resizable=yes");

	if (window.focus) {
		newwindow.focus()
	}
}
