function select_all()
{
var text_val=eval("document.form1.type");
text_val.focus();
text_val.select();
}
function select_all1()
{
var text_val=eval("document.form1.url");
text_val.focus();
text_val.select();
}


function copy(what) {
window.clipboardData.setData('Text',what.value);
}

function chng(c_img) { 
img1 = "play1.gif"; 
img2 = "play.gif"; 
if (c_img.src.indexOf(img1)!= -1) c_img.src = img2; 
else c_img.src = img1; 
} 