$(function(){

//無料ドクターメール相談
$('.blank').click(function(){
	var ua = $.browser;

	if(ua.msie){
		window.open($(this).attr('href') , '' , 'width=580 , height=733 , resizable=no , scrollbars=yes');
	}
	else {
		window.open($(this).attr('href') , '' , 'width=577 , height=746 , resizable=no , scrollbars=yes');
	}
	return false;

});

$('.blank2').click(function(){
	var ua = $.browser;

	if(ua.msie){
		window.open($(this).attr('href') , '' , 'width=980 , height=733 , resizable=no , scrollbars=yes');
	}
	else {
		window.open($(this).attr('href') , '' , 'width=977 , height=746 , resizable=no , scrollbars=yes');
	}
	return false;

});

});

