var mypopwin
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;
  	mypopwin = window.open(url,'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 Blocker to alow popups from our website.\nIf you have any question please contact us.\n\nThank you.')) {
		//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(); }
}