

/* tr is the tablerow of current object */ 
function clipcopy(e, tag, classname) {
	var obj = e;
	//alert( tag );
	while( true ) {
		if( obj.parentNode == null || obj.parentNode == "undefined" ) {
			break;
		}
		//alert( obj.tagName.toUpperCase() );
		
		if( obj.parentNode == null || obj.parentNode.tagName.toLowerCase() == tag ) {
			if( obj.parentNode.className == classname ){
				obj = obj.parentNode;
				break;
			}
		}
		obj = obj.parentNode;
	}
	//var tr = e.parentNode.parentNode;
		
	var tBoxs = obj.getElementsByTagName( 'textarea' );
	var tBox = tBoxs[ 0 ];
	if( !tBox ){
		return;
	}
	if( window.clipboardData ) {
		clipboardData.setData( "Text", tBox.value );
	} else {
		//alert( 'Please copy the tag with Ctrl + C' );	
	}
	tBox.style.display = 'block';
	tBox.focus();
	tBox.select();
}


function changeInputForm( ddlid, th_tarckincodeid, trdomainid, trtrackingcodeid, tr_click, tr_conversion, tr_monthly ){
	var ddl = document.getElementById( ddlid );
	if( ddl ){
		var tr1 = document.getElementById( trdomainid );
		var tr2 = document.getElementById( trtrackingcodeid );
		var tbclick = document.getElementById(tr_click);
		var tbconv = document.getElementById(tr_conversion);
		var tbmonth = document.getElementById(tr_monthly);
		var th = document.getElementById( th_tarckincodeid );
		dvalue = ddl.value;
		if( dvalue == 1 ){
			tr1.style.display = "";
			tr2.style.display = "none";
			tbclick.style.display = "none";
			tbconv.style.display = "none";
			tbmonth.style.display = "";
		}else if( dvalue == 2 ) {
			tr1.style.display = "";
			tr2.style.display = "";
			th.className = "";
			tbclick.style.display = "";
			tbconv.style.display = "none";
			tbmonth.style.display = "none";
		}else if( dvalue == 3 ){
			tr1.style.display = "none";
			tr2.style.display = "";
			th.className = "must";
			tbclick.style.display = "";
			tbconv.style.display = "none";
			tbmonth.style.display = "none";
		}else if( dvalue == 4 ){
			tr1.style.display = "none";
			tr2.style.display = "";			
			th.className = "must";
			tbclick.style.display = "none";
			tbconv.style.display = "";
			tbmonth.style.display = "none";
		}else if( dvalue == 5 ||dvalue ==  7 ){
			tr1.style.display = "";
			tr2.style.display = "";
			th.className = "";
			tbclick.style.display = "none";
			tbconv.style.display = "none";
			tbmonth.style.display = "";
		}else if( dvalue == 6 ){
			tr1.style.display = "none";
			tr2.style.display = "";
			th.className = "must";
			tbclick.style.display = "none";
			tbconv.style.display = "none";
			tbmonth.style.display = "";
		}
	}
}



