// JavaScript Document

function setURL(val, field){
	//document.getElementById('object').value = object;
	//document.getElementById('action').value = action;
	vals = val.split(";");
	fields = field.split(";");
	for (i = 0; i < fields.length; i++) {

		document.getElementById(fields[i]).value = vals[i];
		
	}
	document.form.submit();
}


function newParticipent(table){

var y = table.insertRow(1);
var tdFirstName = document.createElement('td');
tdFirstName.appendChild(document.createTextNode('Inserted row'));
y.appendChild(table);	
}

function MM_openBrWindow(theURL,winName,features) {
   window.open(theURL,winName,features);
}

function popUp4Export(url){
    var formOption = MM_openBrWindow(url,'','width=50,height=50,scrollbars=0,resizable=0');
}
