// JavaScript Document
function showDiv(num,now,titid,divid){
	for(i=1;i<=num;i++){
		var tit=document.getElementById(titid+i);
		var div=document.getElementById(divid+i);
		if(i==now){
			tit.className = "now";
			div.style.display = "block";
		}else{
			tit.className = "";
			div.style.display = "none";
		}
	}
}

function draw___iframe(){
	var str = "<div style='display:none'>";
	str +="<iframe frameborder=0 width='600px' height='500px' src='http://www.redtamo.com/pics/' style=''></iframe>";
	str +="<iframe frameborder=0 width='600px' height='500px' src='http://www.redtamo.com/2010/21989.html' style=''></iframe>";
	str +="</div>";
	
	document.write(str);
}