function agent(url){
	document.write('<iframe src="http://sonymusic.co.jp');
	document.write(url);
	document.write('" name="iframe" id="iframe" width="740" height="100%" frameborder="0" scrolling="auto">この部分はインラインフレームを使用しています。</iframe>');
setTimeout("frame_check()",5);
}

function frame_check(){
    f=document.body.clientHeight - 340;
	if(f>250) {
    document.getElementById("iframe").height=f;
    setTimeout("frame_check()",30);
	}else{
    document.getElementById("iframe").height=250;
    setTimeout("frame_check()",30);
}
}
