
    var searchwin = null;
  
    function openSearchWin() {
    
        if (searchwin) {
            searchwin.close();
        }
    
        var searchurl = "hakutestpopup.html";
        
        searchwin = window.open(searchurl, "", "width=500px, height=350px, resizable, scrollbars=no, left=200, top=100");
        if (searchwin.opener == null) 
            searchwin.opener = self;
    }
	
	var searchwin2 = null;
  
    function openSearchWin2() {
    
        if (searchwin2) {
            searchwin2.close();
        }
    
        var searchurl2 = "hakutestpopup_yritys.html";
        
        searchwin2 = window.open(searchurl2, "", "width=500px, height=350px, resizable, scrollbars=no, left=200, top=100");
        if (searchwin2.opener == null) 
            searchwin2.opener = self;
    }


