 //Polskie napisy


 //<![CDATA[	
//This UploadFileCountChange event handler displays total size of all files selected for upload.
function ImageUploader_UploadFileCountChange(){
	var imageUploader1 = getImageUploader("ImageUploader1");
	if (imageUploader1){
		document.getElementById("TotalSourceFileSize").value = Math.ceil(imageUploader1.getTotalFileSize() / 1024);
	}
}

//This Progress event handler demonstrates an alternative way to 
//redirect upon upload (instead of RedirectUrl property).
function ImageUploader_Progress(Status, Progress, ValueMax, Value, StatusText){
	if (Status=="COMPLETE"){
		var urlpart = document.location.href.split(",");
		
		window.location = 'gallery.php?newgallery_id='+urlpart[2];  
	}
} 

//]]>
 
 
function refresh(filepath,id){
	document.getElementById(id).src=filepath+'?'+Math.random()*10000000000000000;	
}
function gotoURL(url){
	var urlpart = document.location.href.split(",");
	var homeurl = '';
	for(i=0;i<urlpart.length-1;i++) homeurl += urlpart[i]+','; 
	document.location.href = homeurl+url;
	return false;	
} 