//팝업새창띄우기 스크롤바 yes
$('a.popup').live('click', function(){
    var size = $(this).attr('rel').split('*');
    if(size.length > 2){
    	leftPosition=size[2];
    	topPosition=size[3];
    }else{
	    leftPosition = (screen.width) ? (screen.width-size[0])/2 : 0;
	    topPosition = (screen.height) ? (screen.height-size[1])/2 : 0;
    }
    option = 'height='+size[1]+',width='+size[0]+',top='+topPosition+',left='+leftPosition+',scrollbars=yes';    
    window.open($(this).attr('href'),'',option);
    
    return false;    

});

//팝업새창띄우기 스크롤바 no
$('a.popup2').live('click', function(){
    var size = $(this).attr('rel').split('*');
    
    leftPosition = (screen.width) ? (screen.width-size[0])/2 : 0;
    topPosition = (screen.height) ? (screen.height-size[1])/2 : 0;
    option = 'height='+size[1]+',width='+size[0]+',top='+topPosition+',left='+leftPosition+',scrollbars=no';    
    window.open($(this).attr('href'),'',option);
    
    return false;    

});

//헤더 팝업새창띄우기 스크롤바 no
$('area.popup2').live('click', function(){
    var size = $(this).attr('rel').split('*');
    
    leftPosition = (screen.width) ? (screen.width-size[0])/2 : 0;
    topPosition = (screen.height) ? (screen.height-size[1])/2 : 0;
    option = 'height='+size[1]+',width='+size[0]+',top='+topPosition+',left='+leftPosition+',scrollbars=no';    
    window.open($(this).attr('href'),'',option);
    
    return false;    

});

//새창띄우기 스크롤바 yes
$('area.popup').live('click', function(){
    var size = $(this).attr('rel').split('*');
    
    leftPosition = (screen.width) ? (screen.width-size[0])/2 : 0;
    topPosition = (screen.height) ? (screen.height-size[1])/2 : 0;
    option = 'height='+size[1]+',width='+size[0]+',top='+topPosition+',left='+leftPosition+',scrollbars=yes';    
    window.open($(this).attr('href'),'',option);
    return false;    

});

//회원가입 새창 띄우기
$('area.register').live('click',function(){
	leftPosition = (screen.width) ? (screen.width-400)/2 : 0;
    topPosition = (screen.height) ? (screen.height-300)/2 : 0;
    option = 'height=300px,width=400px,top='+topPosition+'px,left='+leftPosition+'px,scrollbars=no';    
    window.open($(this).attr('href'),'Register',option);
    return false;    
});

