var recwin
  var recurl
  function popReklame(id,w,h,s,r) {
  	if(w==null) w = 800
  	if(h==null) h = 550
  	if(s==null) s = 0
  	if(r==null) r = 1
  	recurl = '/code/reklame/get_reklame.php?id=' + id
  	recwin = window.open(recurl,'rec' + id,config='height=' + h + ',width=' + w + ',scrollbars=' + s + ',resizable=' + r)
  	if(recwin==null) { 
		if(confirm('Imate Popup Blocker!\n\nDa biste videli zeljenu stranicu drzite CTRL dugme i kliknite OK.\n\nDa se ovo nebi desavalo ubuduce namestite vas Popub Blocker da dozvoljava Popup samo sa ovog sajta (RAZGLEDNICA.com). Ako imate pitanja kontaktirajte nas. Hvala.')) {
			popReklama(id,w,h,s,r);
		}
	} else { recwin.focus() }
  }
  var mypopwin
  var mypopurl
  var myurl
  function popWin(url,w,h,s,r) {
  	if(w==null) w = 800
  	if(h==null) h = 550
  	if(s==null) s = 0
  	if(r==null) r = 1
	myurl = url.replace("http://", "~");
	//alert(myurl);
  	mypopurl = '/code/get_win.php?url=' + myurl
  	mypopwin = window.open(mypopurl,'mypopwin',config='height=' + h + ',width=' + w + ',scrollbars=' + s + ',resizable=' + r)
  	if(mypopwin==null) { 
		//if(confirm('You have Popup Blocker!\n\nTo see the page you requested please hold CTRL key and click OK\n\nPlease adjust setings on your Popup ')) {
		if(confirm('Imate Popup Blocker!\n\nDa biste videli zeljenu stranicu drzite CTRL dugme i kliknite OK.\n\nDa se ovo nebi desavalo ubuduce namestite vas Popub Blocker da dozvoljava Popup samo sa ovog sajta (RAZGLEDNICA.com). Ako imate pitanja kontaktirajte nas. Hvala.')) {
			popWin(url,w,h,s,r);
		}
	} else { mypopwin.focus() }
  }