// ----------------------------------------
// pop up
// ----------------------------------------
$(document).ready( function () {
    $('.popup').click(function(){
        window.open(this.href, '_blank');
        return false;
    });
});



// ----------------------------------------
// form select page jump
// ----------------------------------------
function popJump(selOBJ)
{
	n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
}


// ----------------------------------------
// sub window open (Flier/Service-rapit)
// ----------------------------------------
var flier_page={
    windowCenter:{
    width:770,
    height:700,
    center:1,
    scrollbars:1,
    resizable:0
    }
};

var sub_page={
    windowCenter:{
    width:700,
    height:700,
    center:1,
    scrollbars:1,
    resizable:0
    }
};


// ----------------------------------------
// sub window open/image JustSize(Shop)
// ----------------------------------------
function popupImageWin(img,width,height){
        var opt = "";
        opt+='top=0,left=0';
        opt+=',width='+width+',height='+height+',';
								opt+='top='+(window.screen.height-height)/2+',left='+(window.screen.width-width)/2;
        opt+='directories=0,toolbar=0,menubar=0,scrollbars=0,status=0,resizable=0';
        jsw=window.open('','jsw',opt);
        jsw.focus();
        jsw.document.open();
        jsw.document.write(
        '<html>'
        +'<head><title>画像拡大</title></head>'
        +'<body style="margin:0; padding:0;border:0;">'
        +'<a href="javascript:window.close();">'
        +'<img src="'+img+'" width="'+width+'" height="'+height+'" border="0" alt="">'
        +'</a>'
        +'</body>'
        +'</html>'
        );
        jsw.document.close();
    }



// ----------------------------------------
// Print Area(Shop Ichiran Top)
// ----------------------------------------
$(document).ready(function(){
	$('#btn_print').click(function(){
		$.jPrintArea('#printarea');
		});
});



