//***************
//Billedupload

function uploadWindow(imgType, id, maxWidth,action, ses, ran){
	self.upWindow = window.open('uploadimg.asp?ses='+ses+'&ran='+ran+'&type='+imgType+'&id='+id+'&maxwidth='+maxWidth+'&action='+ action,'popup','width=400,height=350,scrollbars=yes,resizeable=no,status=no,directories=no,location=no,toolbar=no')
}

function closeChild(){
	if (self.upWindow){
		if (!self.upWindow.closed){
			self.upWindow.close()
		}
	}
}

