// 左にtopとbottomへのボタン追加→IE Firefox Opera

function s_col(tosrc,src,ypos){

if(navigator.userAgent.indexOf("MSIE")>-1){				//Internet Explorer	
	if(navigator.userAgent.indexOf("MSIE 6.0")>-1){			//Internet Explorer ver6
		document.writeln('<a href="'+tosrc+'"><img style="border:0px;position:relative;left:-1000px;" src="'+src+'" alt="" /></a>');
	void(0);
	}else{
	document.writeln('<a href="'+tosrc+'"><img style="border:0px;position:fixed;top:'+ypos+'px;" src="'+src+'" alt="" /></a>');
	void(0);
	}
}

else if(navigator.userAgent.indexOf("Firefox")>-1){	//Firefox
	document.writeln('<a href="'+tosrc+'"><img style="border:0px;position:fixed;top:'+ypos+'px;" src="'+src+'" alt="" /></a>');
	void(0);
}


else if(navigator.userAgent.indexOf("Opera") > -1){	//Opera
	document.writeln('<a href="'+tosrc+'"><img style="border:0px;position:fixed;top:'+ypos+'px;" src="'+src+'" width="12" height="14" alt="" /></a>');
	void(0);
}



else{		//該当無し
void(0);	//何もしない
}
}