$(function(){

//無料ドクターメール相談
$('.blank').click(function(){
	var ua = $.browser;

	if(ua.msie){
		window.open($(this).attr('href') , '' , 'width=580 , height=703 , resizable=no , scrollbars=yes');
	}
	else {
		window.open($(this).attr('href') , '' , 'width=577 , height=716 , resizable=no , scrollbars=yes');
	}
	return false;

});

});
