//Main JS-functions

function st(textin){
	window.status=textin;
	return true;
}

function ViewURL(){
	TheObject=document.SelectFiles;
	var c=0;
	var url='';
	for(i=0;i<TheObject.elements.length;i++){
		if(TheObject.elements[i].checked==true){
			//alert(TheObject.elements[i].value);
			url=TheObject.elements[i].value;
			c++;
		}
	}
	if(c>1){
		alert('You can only select one document for use of this function.');
	}
	else if(c==0){
		alert('You must select a document for use of this function.');
	}
	else{
		var URLWin=window.open('./view_url.php?url='+url,'URLWin','toolbar=no,location=no,directories=no,'+
		'status=yes,menubar=no,scrollbars=yes,resizable=yes,'+
		'copyhistory=yes,dependent=yes,width=400,height=100,top=30,left=30')
      	URLWin.creator=self;
    }
}
