//テキストボックスフォーカス

function Textfocus01(){
	document.text_select.url.focus();
	document.text_select.url.select();
}
function Textfocus02(){
	document.text_select.embed.focus();
	document.text_select.embed.select();
}


//グレーテキストのデフォルト表示

function cText(obj){
if(obj.value==obj.defaultValue){
obj.value="";
obj.style.color="#000";
}
}

function cText2(obj){
if(obj.value==obj.defaultValue){

obj.style.color="#000";
}
}

function sText(obj){
if(obj.value==""){
obj.value=obj.defaultValue;
obj.style.color="#999";
}
}