<!--

function ScrBtnViwResearch(str) {
		
    var strTopFixed = Math.floor((screen.height/2)-(260/2)); 
    var strLeftFixed = Math.floor((screen.width/2)-(350/2)); 
		
	window.open ("/CustomerCenter/GichoolPoll/cus_poll_view.asp?mode=R&Seq="+ str , "strGichoolPoll", "left="+ strLeftFixed +", top="+ strTopFixed +",width=345,height=260,scrollbars='no'");
	//location.href="cus_poll_view.asp?Seq="+ Seq;
}


function ScrBtnRegResearch(str1,str2) {

        var strForm = document.getElementById("strReForm");
        
        var RExample = strForm.Example;
        var k=0;
        var j= RExample.length -1;
        
        if(RExample.length > 0) {
	        
	        for(i = 0; i < RExample.length; i++)
	        
	        if (RExample[i].checked) {
		        k = k+1;
	        }
        
        } else {
	        
	        return RExample.checked;
        }

        if(k == 0) {
	        alert('¼³¹® º¸±â¸¦ ¼±ÅÃ ÇØÁÖ¼¼¿ä');
	        return;
        }

        strForm.method = "post";
        strForm.action = "/CustomerCenter/GichoolPoll/cus_poll_process.asp?Seq="+ str1 +"&strPageSection="+ str2;
        strForm.submit();		
}

function doPollResult() {
    location.href="/CustomerCenter/GichoolPoll/cus_poll_view.asp?Seq=<%=Seq%>&mode=R";
}


//-->